diff --git a/devdi b/devdi index 1afa4f7..c11d2e5 160000 --- a/devdi +++ b/devdi @@ -1 +1 @@ -Subproject commit 1afa4f73eee8ac5a5b1abda4d7b413a19e10019f +Subproject commit c11d2e53fd326eb37ba4e4c53a890ff8f1a9a917 diff --git a/devices/__init__.py b/devices/__init__.py index 2e9641f..815ed09 100644 --- a/devices/__init__.py +++ b/devices/__init__.py @@ -90,7 +90,11 @@ class group(object): rv = rv_list[0] for other in rv_list[1:]: if other != rv: - return None # Hopefully None was not expected ;-) + if name == "get_name": + # ge_name will not be tested, it is only for test documentation + return rv_list[0].replace("_1", "") + else: + return None # Hopefully None was not expected ;-) return rv # If all return values are identical try: rv = super().__getattribute__(name) diff --git a/simulation/devices.py b/simulation/devices.py index 542229a..aa4fd0e 100644 --- a/simulation/devices.py +++ b/simulation/devices.py @@ -133,6 +133,8 @@ class base_videv(base_common): class shelly(base): + DEVICENAME = "Shelly" + # KEY_OUTPUT_0 = "relay/0" KEY_OUTPUT_1 = "relay/1" KEY_INPUT_0 = "input/0" @@ -291,6 +293,8 @@ class shelly(base): class my_powerplug(base): + DEVICENAME = "Powerplug4P" + # KEY_OUTPUT_0 = "output/1" KEY_OUTPUT_1 = "output/2" KEY_OUTPUT_2 = "output/3" @@ -348,6 +352,8 @@ class my_powerplug(base): class silvercrest_powerplug(base): + DEVICENAME = "Powerplug1P" + # KEY_OUTPUT_0 = "state" # BOOL_KEYS = [KEY_OUTPUT_0, ] @@ -393,6 +399,8 @@ class silvercrest_powerplug(base): class tradfri_light(base): + DEVICENAME = "Light" + # KEY_OUTPUT_0 = "state" KEY_BRIGHTNESS = "brightness" KEY_COLOR_TEMP = "color_temp" @@ -511,6 +519,8 @@ class tradfri_light(base): class brennenstuhl_heatingvalve(base): + DEVICENAME = "HeatingValve" + # TEMP_RANGE = [10, 30] # KEY_TEMPERATURE_SETPOINT = "current_heating_setpoint" @@ -528,6 +538,11 @@ class brennenstuhl_heatingvalve(base): self.KEY_BATTERY: 97, }) # + self.ch_names = { + self.KEY_TEMPERATURE: "temp", + self.KEY_TEMPERATURE_SETPOINT: "temp_setp" + } + # self.add_callback(self.KEY_TEMPERATURE_SETPOINT, None, self.print_formatted, True) self.add_callback(self.KEY_TEMPERATURE_SETPOINT, None, self.__send__, True) self.add_callback(self.KEY_TEMPERATURE, None, self.__send__, True) @@ -577,6 +592,8 @@ class brennenstuhl_heatingvalve(base): class videv_light(base_videv): + DEVICENAME = "ViDevLight" + # KEY_OUTPUT_0 = "state" KEY_BRIGHTNESS = "brightness" KEY_COLOR_TEMP = "color_temp" @@ -677,6 +694,8 @@ class videv_light(base_videv): class videv_heating(base_videv): + DEVICENAME = "ViDevHeating" + # TEMP_RANGE = [10, 30] # KEY_USER_TEMPERATURE_SETPOINT = 'user_temperature_setpoint' @@ -704,6 +723,11 @@ class videv_heating(base_videv): self.KEY_BOOST_TIMER: 0 }) # + self.ch_names = { + self.KEY_TEMPERATURE: "temp", + self.KEY_USER_TEMPERATURE_SETPOINT: "temp_setp" + } + # self.timer_maxvalue = None def command(self, command): @@ -760,6 +784,8 @@ class videv_heating(base_videv): class videv_warnings(base): + DEVICENAME = "ViDevWarnings" + # KEY_WARNING = "html_short" # RX_KEYS = [KEY_WARNING] diff --git a/simulation/rooms.py b/simulation/rooms.py index 5b9e8ef..fcbcc82 100644 --- a/simulation/rooms.py +++ b/simulation/rooms.py @@ -117,8 +117,11 @@ class ffw_julian(base): self.main_light.add_callback(self.main_light.KEY_OUTPUT_0, True, self.main_light_zigbee.power_on) self.main_light.add_callback(self.main_light.KEY_OUTPUT_0, False, self.main_light_zigbee.power_off) + self.heating_valve = pd.get(props.STG_ZFW, loc, roo, props.FUN_HEA) + # self.videv_main_light = videv_light(mqtt_client, config.TOPIC_FFW_JULIAN_MAIN_LIGHT_VIDEV, True, True, True) + self.videv_heating = videv_heating(mqtt_client, config.TOPIC_FFW_JULIAN_HEATING_VALVE_VIDEV) class ffw_livingroom(base): @@ -132,8 +135,11 @@ class ffw_livingroom(base): self.main_light.add_callback(self.main_light.KEY_OUTPUT_0, True, self.main_light_zigbee.power_on) self.main_light.add_callback(self.main_light.KEY_OUTPUT_0, False, self.main_light_zigbee.power_off) + self.heating_valve = pd.get(props.STG_ZFW, loc, roo, props.FUN_HEA) + # self.videv_main_light = videv_light(mqtt_client, config.TOPIC_FFW_LIVINGROOM_MAIN_LIGHT_VIDEV, True, True, True) + self.videv_heating = videv_heating(mqtt_client, config.TOPIC_FFW_LIVINGROOM_HEATING_VALVE_VIDEV) class ffw_sleep(base): @@ -146,9 +152,11 @@ class ffw_sleep(base): self.main_light_zigbee = pd.get(props.STG_ZFW, loc, roo, props.FUN_MAL) self.main_light.add_callback(self.main_light.KEY_OUTPUT_0, True, self.main_light_zigbee.power_on) self.main_light.add_callback(self.main_light.KEY_OUTPUT_0, False, self.main_light_zigbee.power_off) + self.heating_valve = pd.get(props.STG_ZFW, loc, roo, props.FUN_HEA) # self.videv_main_light = videv_light(mqtt_client, config.TOPIC_FFW_SLEEP_MAIN_LIGHT_VIDEV, True, True, False) + self.videv_heating = videv_heating(mqtt_client, config.TOPIC_FFW_SLEEP_HEATING_VALVE_VIDEV) class ffw_bath(base): @@ -156,8 +164,13 @@ class ffw_bath(base): loc = props.LOC_FFW roo = props.ROO_BAT # + self.main_light = pd.get(props.STG_SHE, loc, roo, props.FUN_MAL) + self.main_light.configure(input_0_func=self.main_light.INPUT_FUNC_OUT1_TRIGGER) + self.heating_valve = pd.get(props.STG_ZFW, loc, roo, props.FUN_HEA) # + self.videv_main_light = videv_light(mqtt_client, config.TOPIC_FFW_BATH_MAIN_LIGHT_VIDEV, True, False, False) + self.videv_heating = videv_heating(mqtt_client, config.TOPIC_FFW_BATH_HEATING_VALVE_VIDEV) @@ -204,9 +217,12 @@ class ffe_kitchen(base): self.circulation_pump = pd.get(props.STG_SHE, loc, roo, props.FUN_CIR) self.circulation_pump.configure(input_0_func=self.main_light.INPUT_FUNC_OUT1_TRIGGER) # , output_0_auto_off=10*60) + self.heating_valve = pd.get(props.STG_ZFE, loc, roo, props.FUN_HEA) + # self.videv_main_light = videv_light(mqtt_client, config.TOPIC_FFE_KITCHEN_MAIN_LIGHT_VIDEV, True, False, False) self.videv_circulation_pump = videv_light(mqtt_client, config.TOPIC_FFE_KITCHEN_CIRCULATION_PUMP_VIDEV, True, False, False, True) + self.videv_heating = videv_heating(mqtt_client, config.TOPIC_FFE_KITCHEN_HEATING_VALVE_VIDEV) class ffe_diningroom(base): @@ -219,12 +235,15 @@ class ffe_diningroom(base): self.floor_lamp = pd.get(props.STG_ZFE, loc, roo, props.FUN_FLL) + self.heating_valve = pd.get(props.STG_ZFE, loc, roo, props.FUN_HEA) + if config.CHRISTMAS: self.garland = pd.get(props.STG_ZFE, loc, roo, props.FUN_GAR) # self.videv_main_light = videv_light(mqtt_client, config.TOPIC_FFE_DININGROOM_MAIN_LIGHT_VIDEV, True, False, False) self.videv_floor_lamp = videv_light(mqtt_client, config.TOPIC_FFE_DININGROOM_FLOOR_LAMP_VIDEV, True, False, False) + self.videv_heating = videv_heating(mqtt_client, config.TOPIC_FFE_DININGROOM_HEATING_VALVE_VIDEV) if config.CHRISTMAS: self.videv_garland = videv_light(mqtt_client, config.TOPIC_FFE_DININGROOM_GARLAND_VIDEV, True, False, False) @@ -271,11 +290,14 @@ class ffe_livingroom(base): self.xmas_tree = pd.get(props.STG_ZFE, loc, roo, props.FUN_XTR) self.xmas_star = pd.get(props.STG_ZFE, loc, roo, props.FUN_XST) + self.heating_valve = pd.get(props.STG_ZFE, loc, roo, props.FUN_HEA) + # self.videv_main_light = videv_light(mqtt_client, config.TOPIC_FFE_LIVINGROOM_MAIN_LIGHT_VIDEV, True, True, True) self.videv_floor_lamp = videv_light(mqtt_client, config.TOPIC_FFE_LIVINGROOM_FLOOR_LAMP_VIDEV, True, True, True) if config.CHRISTMAS: self.videv_xmas_tree = videv_light(mqtt_client, config.TOPIC_FFE_LIVINGROOM_XMAS_TREE_VIDEV) + self.videv_heating = videv_heating(mqtt_client, config.TOPIC_FFE_LIVINGROOM_HEATING_VALVE_VIDEV) class ffe(base): diff --git a/smart_brain_test.py b/smart_brain_test.py index 15a8dd0..b3f7f16 100644 --- a/smart_brain_test.py +++ b/smart_brain_test.py @@ -10,19 +10,15 @@ import time import tests.help -# TODO: Reimplement existing test # TODO: Extend tests in simulation -# - Test: Check of warning messages for battery and overtemperature +# - Add furthet heating checks (set to default, ...) +# - Test???: Check of warning messages for battery and overtemperature # - Switching button functions (gfw_dirk, ffe.sleep) # - Brightness button functions (gfw.dirk, ffe.sleep) -# - Synch functions of amplifier with spotify, mpd # - Remote actions after amplifier on # - Heating functionality (extended: mode switch off by other function, timer) # - Circulation pump (Extend Timer) # - Stairways (Extend Motion sensor and Timer) -def cleanup(tLogger): - time.sleep(0.5) - tLogger.debug("Collecting startup logs...") if __name__ == "__main__": @@ -54,8 +50,6 @@ if __name__ == "__main__": # Testsuite # ts = tests.help.testSession(mc, tcel=tcel.get(args.level)) - # Clean-Up - ts.testCase('Clean-Up', report.TCEL_SINGLE, cleanup) # Add and run tests tests.add_all_testcases(ts, mc, h) # Export testresults diff --git a/testresults/testrun.json b/testresults/testrun.json index d7037a5..3476ba3 100644 --- a/testresults/testrun.json +++ b/testresults/testrun.json @@ -21,120 +21,131 @@ "item_list": [], "testcase_list": [ "Clean-Up", - "REQ-0001", - "REQ-0002", - "REQ-0003", - "REQ-0004", - "REQ-0005", - "REQ-0006", - "REQ-0007", - "REQ-0010", - "REQ-0011", - "REQ-0012", - "REQ-0013", - "REQ-0014", - "REQ-0015", - "REQ-0016", - "REQ-0017", - "REQ-0021", - "REQ-0022", - "REQ-0023", - "REQ-0024", - "REQ-0025", - "REQ-0026", - "REQ-0027", - "REQ-0028", - "REQ-0029", - "REQ-0030", - "REQ-0031", - "REQ-0032", - "REQ-0041", - "REQ-0042", - "REQ-0043", - "REQ-0044", - "REQ-0045", - "REQ-0046", - "REQ-0047", - "REQ-0061", - "REQ-0062", - "REQ-0063", - "REQ-0064", - "REQ-0081", - "REQ-0082", - "REQ-0101", - "REQ-0102", - "REQ-0103", - "REQ-0104", - "REQ-0105", - "REQ-0106", - "REQ-0121", - "REQ-0122", - "REQ-0123", - "REQ-0124", - "REQ-0141", - "REQ-0142", - "REQ-0143", - "REQ-0144", - "REQ-0145", - "REQ-0146", - "REQ-0181", - "REQ-0182", - "REQ-0301", - "REQ-0302", - "REQ-0303", - "REQ-0304", - "REQ-0305", - "REQ-0306", - "REQ-0307", - "REQ-0308", - "REQ-0309", - "REQ-0310", - "REQ-0311", - "REQ-0312", - "REQ-0313", - "REQ-0314", - "REQ-0315", - "REQ-0316", - "REQ-0317", - "REQ-0318", - "REQ-0319", - "REQ-0320", - "REQ-0321", - "REQ-0322", - "REQ-0323", - "REQ-0324", - "REQ-0325", - "REQ-0341", - "REQ-0342", - "REQ-0343", - "REQ-0344", - "REQ-0345", - "REQ-0361", - "REQ-0362", - "REQ-0363", - "REQ-0364", - "REQ-0365", - "REQ-0366", - "REQ-0401", - "REQ-0402" + "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (ffe.livingroom.main_light)", + "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (ffe.livingroom.main_light)", + "ViDevLight.state (ffe.livingroom.floorlamp) -> Light.state (ffe.livingroom.floor_light)", + "Light.state (ffe.livingroom.floor_light) -> ViDevLight.state (ffe.livingroom.floorlamp)", + "Shelly.relay/0 (ffe.livingroom.main_light) -> Light.state (ffe.livingroom.floor_light)", + "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.state (ffe.livingroom.xmas-tree)", + "Powerplug1P.state (ffe.livingroom.xmas-tree) -> ViDevLight.state (ffe.livingroom.xmas_tree)", + "ViDevLight.brightness (ffe.livingroom.main_light) -> Light.brightness (ffe.livingroom.main_light)", + "Light.brightness (ffe.livingroom.main_light) -> ViDevLight.brightness (ffe.livingroom.main_light)", + "ViDevLight.color_temp (ffe.livingroom.main_light) -> Light.color_temp (ffe.livingroom.main_light)", + "Light.color_temp (ffe.livingroom.main_light) -> ViDevLight.color_temp (ffe.livingroom.main_light)", + "ViDevLight.brightness (ffe.livingroom.floorlamp) -> Light.brightness (ffe.livingroom.floor_light)", + "Light.brightness (ffe.livingroom.floor_light) -> ViDevLight.brightness (ffe.livingroom.floorlamp)", + "ViDevLight.color_temp (ffe.livingroom.floorlamp) -> Light.color_temp (ffe.livingroom.floor_light)", + "Light.color_temp (ffe.livingroom.floor_light) -> ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "ViDevHeating.temp_setp (ffe.livingroom.heating_valve) -> HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "ViDevLight.state (ffe.sleep.main_light) -> Shelly.relay/0 (ffe.sleep.main_light)", + "Shelly.relay/0 (ffe.sleep.main_light) -> ViDevLight.state (ffe.sleep.main_light)", + "ViDevLight.state (ffe.sleep.bed_light_di) -> Light.state (ffe.sleep.bed_light_di)", + "Light.state (ffe.sleep.bed_light_di) -> ViDevLight.state (ffe.sleep.bed_light_di)", + "ViDevLight.state (ffe.sleep.bed_light_ma) -> Powerplug1P.state (ffe.sleep.bed_light_ma)", + "Powerplug1P.state (ffe.sleep.bed_light_ma) -> ViDevLight.state (ffe.sleep.bed_light_ma)", + "ViDevLight.brightness (ffe.sleep.main_light) -> Light.brightness (ffe.sleep.main_light)", + "Light.brightness (ffe.sleep.main_light) -> ViDevLight.brightness (ffe.sleep.main_light)", + "ViDevLight.color_temp (ffe.sleep.main_light) -> Light.color_temp (ffe.sleep.main_light)", + "Light.color_temp (ffe.sleep.main_light) -> ViDevLight.color_temp (ffe.sleep.main_light)", + "ViDevLight.brightness (ffe.sleep.bed_light_di) -> Light.brightness (ffe.sleep.bed_light_di)", + "Light.brightness (ffe.sleep.bed_light_di) -> ViDevLight.brightness (ffe.sleep.bed_light_di)", + "ViDevHeating.temp_setp (ffe.sleep.heating_valve) -> HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "ViDevLight.state (ffe.diningroom.main_light) -> Shelly.relay/0 (ffe.diningroom.main_light)", + "Shelly.relay/0 (ffe.diningroom.main_light) -> ViDevLight.state (ffe.diningroom.main_light)", + "ViDevLight.state (ffe.diningroom.floorlamp) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "Powerplug1P.state (ffe.diningroom.floor_light) -> ViDevLight.state (ffe.diningroom.floorlamp)", + "Shelly.relay/0 (ffe.diningroom.main_light) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "ViDevLight.state (ffe.diningroom.garland) -> Powerplug1P.state (ffe.diningroom.garland)", + "Powerplug1P.state (ffe.diningroom.garland) -> ViDevLight.state (ffe.diningroom.garland)", + "ViDevLight.state (ffe.kitchen.main_light) -> Shelly.relay/0 (ffe.kitchen.main_light)", + "Shelly.relay/0 (ffe.kitchen.main_light) -> ViDevLight.state (ffe.kitchen.main_light)", + "ViDevLight.state (ffe.kitchen.circulation_pump) -> Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "Shelly.relay/0 (ffe.kitchen.circulation_pump) -> ViDevLight.state (ffe.kitchen.circulation_pump)", + "ViDevHeating.temp_setp (ffe.kitchen.heating_valve) -> HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "ViDevLight.state (ffe.floor.main_light) -> Shelly.relay/0 (ffe.floor.main_light)", + "Shelly.relay/0 (ffe.floor.main_light) -> ViDevLight.state (ffe.floor.main_light)", + "ViDevLight.state (ffw.livingroom.main_light) -> Shelly.relay/0 (ffw.livingroom.main_light)", + "Shelly.relay/0 (ffw.livingroom.main_light) -> ViDevLight.state (ffw.livingroom.main_light)", + "ViDevLight.brightness (ffw.livingroom.main_light) -> Light.brightness (ffw.livingroom.main_light)", + "Light.brightness (ffw.livingroom.main_light) -> ViDevLight.brightness (ffw.livingroom.main_light)", + "ViDevLight.color_temp (ffw.livingroom.main_light) -> Light.color_temp (ffw.livingroom.main_light)", + "Light.color_temp (ffw.livingroom.main_light) -> ViDevLight.color_temp (ffw.livingroom.main_light)", + "ViDevHeating.temp_setp (ffw.livingroom.heating_valve) -> HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "ViDevLight.state (ffw.sleep.main_light) -> Shelly.relay/0 (ffw.sleep.main_light)", + "Shelly.relay/0 (ffw.sleep.main_light) -> ViDevLight.state (ffw.sleep.main_light)", + "ViDevLight.brightness (ffw.sleep.main_light) -> Light.brightness (ffw.sleep.main_light)", + "Light.brightness (ffw.sleep.main_light) -> ViDevLight.brightness (ffw.sleep.main_light)", + "ViDevHeating.temp_setp (ffw.sleep.heating_valve) -> HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "ViDevLight.state (ffw.julian.main_light) -> Shelly.relay/0 (ffw.julian.main_light)", + "Shelly.relay/0 (ffw.julian.main_light) -> ViDevLight.state (ffw.julian.main_light)", + "ViDevLight.brightness (ffw.julian.main_light) -> Light.brightness (ffw.julian.main_light)", + "Light.brightness (ffw.julian.main_light) -> ViDevLight.brightness (ffw.julian.main_light)", + "ViDevLight.color_temp (ffw.julian.main_light) -> Light.color_temp (ffw.julian.main_light)", + "Light.color_temp (ffw.julian.main_light) -> ViDevLight.color_temp (ffw.julian.main_light)", + "ViDevHeating.temp_setp (ffw.julian.heating_valve) -> HeatingValve.temp_setp (ffw.julian.heating_valve)", + "ViDevLight.state (ffw.bath.main_light) -> Shelly.relay/0 (ffw.bath.main_light)", + "Shelly.relay/0 (ffw.bath.main_light) -> ViDevLight.state (ffw.bath.main_light)", + "ViDevHeating.temp_setp (ffw.bath.heating_valve) -> HeatingValve.temp_setp (ffw.bath.heating_valve)", + "ViDevLight.state (ffw.floor.main_light) -> Shelly.relay/0 (ffw.floor.main_light)", + "Shelly.relay/0 (ffw.floor.main_light) -> ViDevLight.state (ffw.floor.main_light)", + "ViDevLight.state (gfw.dirk.main_light) -> Shelly.relay/0 (gfw.dirk.main_light)", + "Shelly.relay/0 (gfw.dirk.main_light) -> ViDevLight.state (gfw.dirk.main_light)", + "ViDevLight.state (gfw.dirk.desk_light) -> Light.state (gfw.dirk.desk_light)", + "Light.state (gfw.dirk.desk_light) -> ViDevLight.state (gfw.dirk.desk_light)", + "ViDevLight.state (gfw.dirk.pc_dock) -> Powerplug1P.state (gfw.dirk.dock)", + "Powerplug1P.state (gfw.dirk.dock) -> ViDevLight.state (gfw.dirk.pc_dock)", + "ViDevLight.state (gfw.dirk.amplifier) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "Powerplug4P.amplifier (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.amplifier)", + "ViDevLight.state (gfw.dirk.phono) -> Powerplug4P.phono (gfw.dirk.powerplug)", + "Powerplug4P.phono (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.phono)", + "ViDevLight.state (gfw.dirk.cd_player) -> Powerplug4P.cd-player (gfw.dirk.powerplug)", + "Powerplug4P.cd-player (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.cd_player)", + "ViDevLight.state (gfw.dirk.bt) -> Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.bt)", + "Powerplug4P.phono (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "Powerplug4P.cd-player (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "ViDevLight.brightness (gfw.dirk.main_light) -> Light.brightness (gfw.dirk.main_light)", + "Light.brightness (gfw.dirk.main_light) -> ViDevLight.brightness (gfw.dirk.main_light)", + "ViDevLight.color_temp (gfw.dirk.main_light) -> Light.color_temp (gfw.dirk.main_light)", + "Light.color_temp (gfw.dirk.main_light) -> ViDevLight.color_temp (gfw.dirk.main_light)", + "ViDevLight.brightness (gfw.dirk.desk_light) -> Light.brightness (gfw.dirk.desk_light)", + "Light.brightness (gfw.dirk.desk_light) -> ViDevLight.brightness (gfw.dirk.desk_light)", + "ViDevLight.color_temp (gfw.dirk.desk_light) -> Light.color_temp (gfw.dirk.desk_light)", + "Light.color_temp (gfw.dirk.desk_light) -> ViDevLight.color_temp (gfw.dirk.desk_light)", + "ViDevHeating.temp_setp (gfw.dirk.heating_valve) -> HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "ViDevLight.state (gfw.marion.main_light) -> Shelly.relay/0 (gfw.marion.main_light)", + "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (gfw.marion.main_light)", + "ViDevLight.state (gfw.marion.window_light) -> Light.state (gfw.marion.window_light)", + "Light.state (gfw.marion.window_light) -> ViDevLight.state (gfw.marion.window_light)", + "Shelly.relay/0 (gfw.marion.main_light) -> Light.state (gfw.marion.window_light)", + "ViDevHeating.temp_setp (gfw.marion.heating_valve) -> HeatingValve.temp_setp (gfw.marion.heating_valve)", + "ViDevLight.state (gfw.floor.main_light) -> Shelly.relay/0 (gfw.floor.main_light)", + "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (gfw.floor.main_light)", + "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (gfw.floor.main_light)", + "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (gfw.floor.main_light)", + "ViDevLight.color_temp (gfw.floor.main_light) -> Light.color_temp (gfw.floor.main_light)", + "Light.color_temp (gfw.floor.main_light) -> ViDevLight.color_temp (gfw.floor.main_light)", + "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.main_light)", + "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.main_light)" ] }, "testrun_list": [ { - "time_consumption": 91.0301866531372, - "testcase_execution_level": 90, - "name": "Default Testsession name", + "time_consumption": 52.89364171028137, + "number_of_possibly_failed_tests": 0, + "number_of_successfull_tests": 108, "number_of_failed_tests": 0, - "number_of_tests": 97, - "interpreter": "python3.13.5", + "testcase_execution_level": 90, "testcase_names": { "0": "Single Test", "10": "Smoke Test (Minumum subset)", "50": "Short Test (Subset)", "90": "Full Test (all defined tests)" }, - "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 97, + "name": "Default Testsession name", + "number_of_tests": 108, + "interpreter": "python3.13.5", "testcases": { "Clean-Up": { "name": "__tLogger__", @@ -149,16 +160,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638759.9367568, - "msecs": 936.0, - "relativeCreated": 199.895613, - "thread": 131449228267776, + "created": 1755888838.4266763, + "msecs": 426.0, + "relativeCreated": 301.485502, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Clean-Up", - "asctime": "2025-08-19 23:25:59,936", + "asctime": "2025-08-22 20:53:58,426", "moduleLogger": [ { "name": "smart_brain.mqtt", @@ -175,16 +186,16 @@ "stack_info": null, "lineno": 70, "funcName": "add_callback", - "created": 1755638759.9365194, - "msecs": 936.0, - "relativeCreated": 199.658472, - "thread": 131449228267776, + "created": 1755888838.4254863, + "msecs": 425.0, + "relativeCreated": 300.295529, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Adding callback for topic __info__", - "asctime": "2025-08-19 23:25:59,936" + "asctime": "2025-08-22 20:53:58,425" }, { "name": "smart_brain.mqtt.__info__", @@ -202,49 +213,76 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638759.9366927, - "msecs": 936.0, - "relativeCreated": 199.831674, - "thread": 131449228267776, + "created": 1755888838.4263825, + "msecs": 426.0, + "relativeCreated": 301.191701, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic __info__ and payload null", - "asctime": "2025-08-19 23:25:59,936" + "asctime": "2025-08-22 20:53:58,426" } ], "testcaseLogger": [ { "name": "__tLogger__", - "msg": "Collecting startup logs...", + "msg": "Collecting precondition logs...", "args": [], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/testresults/../smart_brain_test.py", - "filename": "smart_brain_test.py", - "module": "smart_brain_test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/rooms.py", + "filename": "rooms.py", + "module": "rooms", "exc_text": null, "stack_info": null, - "lineno": 25, - "funcName": "cleanup", - "created": 1755638760.4370263, - "msecs": 437.0, - "relativeCreated": 700.165363, - "thread": 131449228267776, + "lineno": 74, + "funcName": "precond_test", + "created": 1755888838.9272423, + "msecs": 927.0, + "relativeCreated": 802.051455, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Collecting startup logs...", - "asctime": "2025-08-19 23:26:00,437", + "message": "Collecting precondition logs...", + "asctime": "2025-08-22 20:53:58,927", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", + "name": "smart_brain.mqtt.videv.all.oof", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/all/oof", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888838.4268508, + "msecs": 426.0, + "relativeCreated": 301.660003, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/all/oof and payload True", + "asctime": "2025-08-22 20:53:58,426" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/stw/firstfloor/main_light/relay/0", - "b'off'" + "zigbee_gfw/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" ], "levelname": "DEBUG", "levelno": 10, @@ -255,23 +293,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9371061, - "msecs": 937.0, - "relativeCreated": 200.245255, - "thread": 131449202394816, + "created": 1755888838.430741, + "msecs": 430.0, + "relativeCreated": 305.550293, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:25:59,937" + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,430" }, { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.1", + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/stw/firstfloor/main_light/relay/1", - "b'off'" + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'20'" ], "levelname": "DEBUG", "levelno": 10, @@ -282,22 +320,400 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9372284, - "msecs": 937.0, - "relativeCreated": 200.367671, - "thread": 131449202394816, + "created": 1755888838.4310756, + "msecs": 431.0, + "relativeCreated": 305.884936, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/1 and payload b'off'", - "asctime": "2025-08-19 23:25:59,937" + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,431" }, { - "name": "smart_brain.mqtt.zigbee_gfw.gar.garden.garland", + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_gfw/gar/garden/garland", + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4313247, + "msecs": 431.0, + "relativeCreated": 306.133887, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,431" + }, + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4315343, + "msecs": 431.0, + "relativeCreated": 306.343614, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,431" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4317527, + "msecs": 431.0, + "relativeCreated": 306.56198, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,431" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4320192, + "msecs": 432.0, + "relativeCreated": 306.828342, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,432" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4323747, + "msecs": 432.0, + "relativeCreated": 307.183904, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,432" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.432726, + "msecs": 432.0, + "relativeCreated": 307.535348, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,432" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4330552, + "msecs": 433.0, + "relativeCreated": 307.864437, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,433" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4334228, + "msecs": 433.0, + "relativeCreated": 308.232099, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,433" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.433715, + "msecs": 433.0, + "relativeCreated": 308.524518, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,433" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4340563, + "msecs": 434.0, + "relativeCreated": 308.865441, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,434" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4343963, + "msecs": 434.0, + "relativeCreated": 309.205368, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,434" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4346886, + "msecs": 434.0, + "relativeCreated": 309.497722, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,434" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4349205, + "msecs": 434.0, + "relativeCreated": 309.729562, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,434" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4351463, + "msecs": 435.0, + "relativeCreated": 309.955498, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,435" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light/set", "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", @@ -309,22 +725,292 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9373581, - "msecs": 937.0, - "relativeCreated": 200.497048, - "thread": 131449202394816, + "created": 1755888838.4353836, + "msecs": 435.0, + "relativeCreated": 310.192788, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_gfw/gar/garden/garland and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,937" + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:58,435" }, { - "name": "smart_brain.mqtt.zigbee_gfw.gar.garden.repeater", + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_gfw/gar/garden/repeater", + "videv/ffw/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.435574, + "msecs": 435.0, + "relativeCreated": 310.383317, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,435" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.435779, + "msecs": 435.0, + "relativeCreated": 310.588422, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,435" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4359744, + "msecs": 435.0, + "relativeCreated": 310.783601, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,435" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4361649, + "msecs": 436.0, + "relativeCreated": 310.974179, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,436" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4363613, + "msecs": 436.0, + "relativeCreated": 311.170467, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,436" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4365811, + "msecs": 436.0, + "relativeCreated": 311.390306, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,436" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4368, + "msecs": 436.0, + "relativeCreated": 311.609237, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,436" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4370267, + "msecs": 437.0, + "relativeCreated": 311.835926, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,437" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4372325, + "msecs": 437.0, + "relativeCreated": 312.041557, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,437" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4374313, + "msecs": 437.0, + "relativeCreated": 312.24044, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,437" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", @@ -336,22 +1022,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9375036, - "msecs": 937.0, - "relativeCreated": 200.642551, - "thread": 131449202394816, + "created": 1755888838.4376276, + "msecs": 437.0, + "relativeCreated": 312.436934, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_gfw/gar/garden/repeater and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,937" + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:58,437" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", + "videv/ffe/diningroom/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -363,22 +1049,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9382274, - "msecs": 938.0, - "relativeCreated": 201.366448, - "thread": 131449202394816, + "created": 1755888838.437867, + "msecs": 437.0, + "relativeCreated": 312.676319, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:25:59,938" + "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,437" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", "msg": "Received message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", + "videv/ffe/diningroom/floorlamp/state", "b'false'" ], "levelname": "DEBUG", @@ -390,22 +1076,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.938388, - "msecs": 938.0, - "relativeCreated": 201.527223, - "thread": 131449202394816, + "created": 1755888838.4380624, + "msecs": 438.0, + "relativeCreated": 312.871479, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:25:59,938" + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,438" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", "msg": "Received message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", + "videv/ffe/diningroom/garland/state", "b'false'" ], "levelname": "DEBUG", @@ -417,70 +1103,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9405773, - "msecs": 940.0, - "relativeCreated": 203.716297, - "thread": 131449202394816, + "created": 1755888838.43826, + "msecs": 438.0, + "relativeCreated": 313.0693, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:25:59,940" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.940698, - "msecs": 940.0, - "relativeCreated": 203.836812, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,940" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9407835, - "msecs": 940.0, - "relativeCreated": 203.922707, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,940" + "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'false'", + "asctime": "2025-08-22 20:53:58,438" }, { "name": "smart_brain.mqtt.__info__", @@ -498,340 +1130,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9783988, - "msecs": 978.0, - "relativeCreated": 241.537601, - "thread": 131449202394816, + "created": 1755888838.4385564, + "msecs": 438.0, + "relativeCreated": 313.365661, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic __info__ and payload b'null'", - "asctime": "2025-08-19 23:25:59,978" - }, - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9786074, - "msecs": 978.0, - "relativeCreated": 241.746479, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,978" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9787664, - "msecs": 978.0, - "relativeCreated": 241.905347, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,978" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9788733, - "msecs": 978.0, - "relativeCreated": 242.01241, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,978" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9789903, - "msecs": 978.0, - "relativeCreated": 242.12923, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,978" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9790921, - "msecs": 979.0, - "relativeCreated": 242.231151, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9791908, - "msecs": 979.0, - "relativeCreated": 242.32978, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9792945, - "msecs": 979.0, - "relativeCreated": 242.433497, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.979394, - "msecs": 979.0, - "relativeCreated": 242.533019, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9795008, - "msecs": 979.0, - "relativeCreated": 242.639692, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,979" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9796064, - "msecs": 979.0, - "relativeCreated": 242.74524, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9797032, - "msecs": 979.0, - "relativeCreated": 242.842265, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638759.9797995, - "msecs": 979.0, - "relativeCreated": 242.93867, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" + "asctime": "2025-08-22 20:53:58,438" }, { "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", @@ -849,16 +1157,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9799018, - "msecs": 979.0, - "relativeCreated": 243.040828, - "thread": 131449202394816, + "created": 1755888838.438768, + "msecs": 438.0, + "relativeCreated": 313.577099, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,979" + "asctime": "2025-08-22 20:53:58,438" }, { "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", @@ -876,16 +1184,97 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9800026, - "msecs": 980.0, - "relativeCreated": 243.141574, - "thread": 131449202394816, + "created": 1755888838.4690137, + "msecs": 469.0, + "relativeCreated": 343.82304, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,469" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.469364, + "msecs": 469.0, + "relativeCreated": 344.173252, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,469" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4696193, + "msecs": 469.0, + "relativeCreated": 344.428408, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,469" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4698596, + "msecs": 469.0, + "relativeCreated": 344.668839, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,469" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", @@ -903,16 +1292,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9801018, - "msecs": 980.0, - "relativeCreated": 243.240878, - "thread": 131449202394816, + "created": 1755888838.4700832, + "msecs": 470.0, + "relativeCreated": 344.892666, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,470" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", @@ -930,16 +1319,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9802058, - "msecs": 980.0, - "relativeCreated": 243.344767, - "thread": 131449202394816, + "created": 1755888838.470301, + "msecs": 470.0, + "relativeCreated": 345.110283, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,470" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", @@ -957,16 +1346,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9803195, - "msecs": 980.0, - "relativeCreated": 243.458395, - "thread": 131449202394816, + "created": 1755888838.4705055, + "msecs": 470.0, + "relativeCreated": 345.314671, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,470" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", @@ -984,16 +1373,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9804158, - "msecs": 980.0, - "relativeCreated": 243.554622, - "thread": 131449202394816, + "created": 1755888838.4707248, + "msecs": 470.0, + "relativeCreated": 345.534054, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,470" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", @@ -1011,16 +1400,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.980513, - "msecs": 980.0, - "relativeCreated": 243.651982, - "thread": 131449202394816, + "created": 1755888838.4709327, + "msecs": 470.0, + "relativeCreated": 345.741888, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,470" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", @@ -1038,16 +1427,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9806156, - "msecs": 980.0, - "relativeCreated": 243.754591, - "thread": 131449202394816, + "created": 1755888838.4711342, + "msecs": 471.0, + "relativeCreated": 345.943392, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,471" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", @@ -1065,16 +1454,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.980717, - "msecs": 980.0, - "relativeCreated": 243.85597, - "thread": 131449202394816, + "created": 1755888838.4713397, + "msecs": 471.0, + "relativeCreated": 346.149107, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,471" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", @@ -1092,16 +1481,97 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9808137, - "msecs": 980.0, - "relativeCreated": 243.952918, - "thread": 131449202394816, + "created": 1755888838.4715536, + "msecs": 471.0, + "relativeCreated": 346.362854, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,471" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4717798, + "msecs": 471.0, + "relativeCreated": 346.589198, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:53:58,471" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.471988, + "msecs": 471.0, + "relativeCreated": 346.797196, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,471" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888838.4722018, + "msecs": 472.0, + "relativeCreated": 347.010953, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:53:58,472" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -1119,16 +1589,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.9809248, - "msecs": 980.0, - "relativeCreated": 244.063918, - "thread": 131449202394816, + "created": 1755888838.4724274, + "msecs": 472.0, + "relativeCreated": 347.236441, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:25:59,980" + "asctime": "2025-08-22 20:53:58,472" }, { "name": "smart_brain.mqtt.__info__", @@ -1146,28 +1616,28 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638759.981027, - "msecs": 981.0, - "relativeCreated": 244.165906, - "thread": 131449202394816, + "created": 1755888838.47265, + "msecs": 472.0, + "relativeCreated": 347.459343, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic __info__ and payload b'{\"app_name\": \"smart_brain\", \"version\": {\"readable\": \"1.3.0\", \"major\": 1, \"minor\": 3, \"patch\": 0}, \"git\": {\"url\": \"https://git.mount-mockery.de/smarthome/smart_brain.git\", \"ref\": \"507b67d91a5efca44fc52f3ccee96215f231ffd5\"}}'", - "asctime": "2025-08-19 23:25:59,981" + "asctime": "2025-08-22 20:53:58,472" } ], - "time_consumption": 0.45599937438964844 + "time_consumption": 0.454592227935791 } ], - "time_consumption": 0.5002694129943848, - "time_start": "2025-08-19 23:25:59,936", - "time_finished": "2025-08-19 23:26:00,437" + "time_consumption": 0.5005660057067871, + "time_start": "2025-08-22 20:53:58,426", + "time_finished": "2025-08-22 20:53:58,927" }, - "REQ-0001": { + "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (ffe.livingroom.main_light)": { "name": "__tLogger__", - "msg": "REQ-0001", + "msg": "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (ffe.livingroom.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -1178,16 +1648,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638760.4374328, - "msecs": 437.0, - "relativeCreated": 700.571839, - "thread": 131449228267776, + "created": 1755888838.9276295, + "msecs": 927.0, + "relativeCreated": 802.438812, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0001", - "asctime": "2025-08-19 23:26:00,437", + "message": "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (ffe.livingroom.main_light)", + "asctime": "2025-08-22 20:53:58,927", "moduleLogger": [], "testcaseLogger": [ { @@ -1205,16 +1675,16 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638760.538058, - "msecs": 538.0, - "relativeCreated": 801.19704, - "thread": 131449228267776, + "created": 1755888839.028215, + "msecs": 28.0, + "relativeCreated": 903.02415, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:00,538", + "asctime": "2025-08-22 20:53:59,028", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state.set", @@ -1232,45 +1702,19 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.4375958, - "msecs": 437.0, - "relativeCreated": 700.734936, - "thread": 131449228267776, + "created": 1755888838.927831, + "msecs": 927.0, + "relativeCreated": 802.640195, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:00,437" - }, - { - "name": "smart_brain.devices.shellies.ffe.livingroom.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638760.4378393, - "msecs": 437.0, - "relativeCreated": 700.97824, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:00,437" + "asctime": "2025-08-22 20:53:58,927" } ], - "time_consumption": 0.1002187728881836 + "time_consumption": 0.10038399696350098 }, { "name": "__tLogger__", @@ -1288,16 +1732,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638760.6386454, - "msecs": 638.0, - "relativeCreated": 901.784515, - "thread": 131449228267776, + "created": 1755888839.0285769, + "msecs": 28.0, + "relativeCreated": 903.385939, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:00,638", + "asctime": "2025-08-22 20:53:59,028", "moduleLogger": [ { "name": "__unittest__", @@ -1316,16 +1760,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638760.6384385, - "msecs": 638.0, - "relativeCreated": 901.577336, - "thread": 131449228267776, + "created": 1755888839.0284631, + "msecs": 28.0, + "relativeCreated": 903.272444, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:00,638" + "asctime": "2025-08-22 20:53:59,028" }, { "name": "__unittest__", @@ -1345,25 +1789,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638760.638581, - "msecs": 638.0, - "relativeCreated": 901.71994, - "thread": 131449228267776, + "created": 1755888839.0285244, + "msecs": 28.0, + "relativeCreated": 903.333468, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:00,638" + "asctime": "2025-08-22 20:53:59,028" } ], - "time_consumption": 6.437301635742188e-05 + "time_consumption": 5.245208740234375e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/ffe/livingroom/main_light", + "ViDevLight.state (ffe.livingroom.main_light)", "True" ], "levelname": "DEBUG", @@ -1373,47 +1817,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638760.6387632, - "msecs": 638.0, - "relativeCreated": 901.90224, - "thread": 131449228267776, + "created": 1755888839.1291173, + "msecs": 129.0, + "relativeCreated": 1003.926317, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to True", - "asctime": "2025-08-19 23:26:00,638", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638760.839945, - "msecs": 839.0, - "relativeCreated": 1103.084064, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.livingroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:00,839", + "message": "Setting state of ViDevLight.state (ffe.livingroom.main_light) to True", + "asctime": "2025-08-22 20:53:59,129", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state.set", @@ -1431,16 +1846,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6389256, - "msecs": 638.0, - "relativeCreated": 902.064549, - "thread": 131449228267776, + "created": 1755888839.02871, + "msecs": 28.0, + "relativeCreated": 903.519074, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:00,638" + "asctime": "2025-08-22 20:53:59,028" }, { "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0.command", @@ -1458,16 +1873,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6413584, - "msecs": 641.0, - "relativeCreated": 904.497282, - "thread": 131449202394816, + "created": 1755888839.0307128, + "msecs": 30.0, + "relativeCreated": 905.522159, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:00,641" + "asctime": "2025-08-22 20:53:59,030" }, { "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", @@ -1485,16 +1900,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6416018, - "msecs": 641.0, - "relativeCreated": 904.740717, - "thread": 131449202394816, + "created": 1755888839.0309887, + "msecs": 30.0, + "relativeCreated": 905.797936, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:00,641" + "asctime": "2025-08-22 20:53:59,030" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", @@ -1512,16 +1927,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6418834, - "msecs": 641.0, - "relativeCreated": 905.02237, - "thread": 131449202394816, + "created": 1755888839.031252, + "msecs": 31.0, + "relativeCreated": 906.061215, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,641" + "asctime": "2025-08-22 20:53:59,031" }, { "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", @@ -1539,16 +1954,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6424525, - "msecs": 642.0, - "relativeCreated": 905.591606, - "thread": 131449202394816, + "created": 1755888839.0317817, + "msecs": 31.0, + "relativeCreated": 906.590796, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:00,642" + "asctime": "2025-08-22 20:53:59,031" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", @@ -1566,16 +1981,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6427329, - "msecs": 642.0, - "relativeCreated": 905.871916, - "thread": 131449202394816, + "created": 1755888839.032049, + "msecs": 32.0, + "relativeCreated": 906.858218, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,642" + "asctime": "2025-08-22 20:53:59,032" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", @@ -1593,16 +2008,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.685197, - "msecs": 685.0, - "relativeCreated": 948.336061, - "thread": 131449202394816, + "created": 1755888839.0744596, + "msecs": 74.0, + "relativeCreated": 949.268756, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:00,685" + "asctime": "2025-08-22 20:53:59,074" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", @@ -1620,16 +2035,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6854486, - "msecs": 685.0, - "relativeCreated": 948.587816, - "thread": 131449202394816, + "created": 1755888839.074792, + "msecs": 74.0, + "relativeCreated": 949.601152, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,685" + "asctime": "2025-08-22 20:53:59,074" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", @@ -1647,16 +2062,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6856937, - "msecs": 685.0, - "relativeCreated": 948.832741, - "thread": 131449202394816, + "created": 1755888839.075094, + "msecs": 75.0, + "relativeCreated": 949.903307, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:00,685" + "asctime": "2025-08-22 20:53:59,075" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", @@ -1674,16 +2089,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6858552, - "msecs": 685.0, - "relativeCreated": 948.994234, - "thread": 131449202394816, + "created": 1755888839.075256, + "msecs": 75.0, + "relativeCreated": 950.0653, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,685" + "asctime": "2025-08-22 20:53:59,075" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", @@ -1701,16 +2116,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6861548, - "msecs": 686.0, - "relativeCreated": 949.293769, - "thread": 131449202394816, + "created": 1755888839.0755556, + "msecs": 75.0, + "relativeCreated": 950.364852, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:00,686" + "asctime": "2025-08-22 20:53:59,075" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", @@ -1728,16 +2143,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6863337, - "msecs": 686.0, - "relativeCreated": 949.47276, - "thread": 131449202394816, + "created": 1755888839.0757754, + "msecs": 75.0, + "relativeCreated": 950.584669, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,686" + "asctime": "2025-08-22 20:53:59,075" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", @@ -1755,16 +2170,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6865313, - "msecs": 686.0, - "relativeCreated": 949.670294, - "thread": 131449202394816, + "created": 1755888839.0760028, + "msecs": 76.0, + "relativeCreated": 950.812134, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:00,686" + "asctime": "2025-08-22 20:53:59,076" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", @@ -1782,16 +2197,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6866558, - "msecs": 686.0, - "relativeCreated": 949.794746, - "thread": 131449202394816, + "created": 1755888839.0761442, + "msecs": 76.0, + "relativeCreated": 950.953408, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,686" + "asctime": "2025-08-22 20:53:59,076" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", @@ -1809,16 +2224,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6869164, - "msecs": 686.0, - "relativeCreated": 950.055461, - "thread": 131449202394816, + "created": 1755888839.0764315, + "msecs": 76.0, + "relativeCreated": 951.240943, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:00,686" + "asctime": "2025-08-22 20:53:59,076" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", @@ -1836,16 +2251,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6870801, - "msecs": 687.0, - "relativeCreated": 950.219274, - "thread": 131449202394816, + "created": 1755888839.0766244, + "msecs": 76.0, + "relativeCreated": 951.43356, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,687" + "asctime": "2025-08-22 20:53:59,076" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", @@ -1863,16 +2278,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6872785, - "msecs": 687.0, - "relativeCreated": 950.417628, - "thread": 131449202394816, + "created": 1755888839.0768511, + "msecs": 76.0, + "relativeCreated": 951.660419, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:00,687" + "asctime": "2025-08-22 20:53:59,076" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", @@ -1890,16 +2305,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638760.6874, - "msecs": 687.0, - "relativeCreated": 950.539136, - "thread": 131449202394816, + "created": 1755888839.0769808, + "msecs": 76.0, + "relativeCreated": 951.789919, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,687" + "asctime": "2025-08-22 20:53:59,076" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", @@ -1917,16 +2332,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6876318, - "msecs": 687.0, - "relativeCreated": 950.770831, - "thread": 131449202394816, + "created": 1755888839.0772412, + "msecs": 77.0, + "relativeCreated": 952.050425, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:00,687" + "asctime": "2025-08-22 20:53:59,077" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", @@ -1944,16 +2359,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6878998, - "msecs": 687.0, - "relativeCreated": 951.038944, - "thread": 131449202394816, + "created": 1755888839.0775108, + "msecs": 77.0, + "relativeCreated": 952.320065, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:00,687" + "asctime": "2025-08-22 20:53:59,077" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", @@ -1971,16 +2386,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6880972, - "msecs": 688.0, - "relativeCreated": 951.236285, - "thread": 131449202394816, + "created": 1755888839.07772, + "msecs": 77.0, + "relativeCreated": 952.529165, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:26:00,688" + "asctime": "2025-08-22 20:53:59,077" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", @@ -1998,16 +2413,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6882837, - "msecs": 688.0, - "relativeCreated": 951.422544, - "thread": 131449202394816, + "created": 1755888839.0779185, + "msecs": 77.0, + "relativeCreated": 952.727786, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,688" + "asctime": "2025-08-22 20:53:59,077" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", @@ -2025,16 +2440,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6884534, - "msecs": 688.0, - "relativeCreated": 951.592368, - "thread": 131449202394816, + "created": 1755888839.0780988, + "msecs": 78.0, + "relativeCreated": 952.907893, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,688" + "asctime": "2025-08-22 20:53:59,078" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", @@ -2052,16 +2467,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6886306, - "msecs": 688.0, - "relativeCreated": 951.76956, - "thread": 131449202394816, + "created": 1755888839.078267, + "msecs": 78.0, + "relativeCreated": 953.076283, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,688" + "asctime": "2025-08-22 20:53:59,078" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", @@ -2079,16 +2494,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.688793, - "msecs": 688.0, - "relativeCreated": 951.931742, - "thread": 131449202394816, + "created": 1755888839.0784354, + "msecs": 78.0, + "relativeCreated": 953.244521, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,688" + "asctime": "2025-08-22 20:53:59,078" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", @@ -2106,16 +2521,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.688992, - "msecs": 688.0, - "relativeCreated": 952.131068, - "thread": 131449202394816, + "created": 1755888839.0786045, + "msecs": 78.0, + "relativeCreated": 953.41373, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,688" + "asctime": "2025-08-22 20:53:59,078" }, { "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", @@ -2133,16 +2548,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.6891549, - "msecs": 689.0, - "relativeCreated": 952.293823, - "thread": 131449202394816, + "created": 1755888839.078792, + "msecs": 78.0, + "relativeCreated": 953.601463, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,689" + "asctime": "2025-08-22 20:53:59,078" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", @@ -2160,1100 +2575,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638760.7314382, - "msecs": 731.0, - "relativeCreated": 994.577187, - "thread": 131449202394816, + "created": 1755888839.1188796, + "msecs": 118.0, + "relativeCreated": 993.688633, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:00,731" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.7715278, - "msecs": 771.0, - "relativeCreated": 1034.66679, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:00,771" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.771759, - "msecs": 771.0, - "relativeCreated": 1034.898202, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", - "asctime": "2025-08-19 23:26:00,771" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.livingroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638760.8396947, - "msecs": 839.0, - "relativeCreated": 1102.833837, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.livingroom)): True ()", - "asctime": "2025-08-19 23:26:00,839" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.livingroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638760.839843, - "msecs": 839.0, - "relativeCreated": 1102.982095, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.livingroom)): result = True ()", - "asctime": "2025-08-19 23:26:00,839" + "asctime": "2025-08-22 20:53:59,118" } ], - "time_consumption": 0.00010204315185546875 + "time_consumption": 0.010237693786621094 }, { "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638760.8401113, - "msecs": 840.0, - "relativeCreated": 1103.25037, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to False", - "asctime": "2025-08-19 23:26:00,840", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638761.040847, - "msecs": 40.0, - "relativeCreated": 1303.986196, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.livingroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:01,040", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.840226, - "msecs": 840.0, - "relativeCreated": 1103.364968, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:00,840" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8426237, - "msecs": 842.0, - "relativeCreated": 1105.762627, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:00,842" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.842853, - "msecs": 842.0, - "relativeCreated": 1105.992142, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:00,842" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8434322, - "msecs": 843.0, - "relativeCreated": 1106.571285, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:00,843" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.884938, - "msecs": 884.0, - "relativeCreated": 1148.076974, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:00,884" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.8851137, - "msecs": 885.0, - "relativeCreated": 1148.252532, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,885" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8853064, - "msecs": 885.0, - "relativeCreated": 1148.445389, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:00,885" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.8854077, - "msecs": 885.0, - "relativeCreated": 1148.546793, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,885" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8855877, - "msecs": 885.0, - "relativeCreated": 1148.726731, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:00,885" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.8856907, - "msecs": 885.0, - "relativeCreated": 1148.829747, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,885" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8858743, - "msecs": 885.0, - "relativeCreated": 1149.013158, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:00,885" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.8859794, - "msecs": 885.0, - "relativeCreated": 1149.118455, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,885" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8861737, - "msecs": 886.0, - "relativeCreated": 1149.312596, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:00,886" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.8863, - "msecs": 886.0, - "relativeCreated": 1149.439173, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,886" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8864484, - "msecs": 886.0, - "relativeCreated": 1149.587456, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:00,886" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638760.8865402, - "msecs": 886.0, - "relativeCreated": 1149.679368, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:00,886" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8867204, - "msecs": 886.0, - "relativeCreated": 1149.859517, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:00,886" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8869176, - "msecs": 886.0, - "relativeCreated": 1150.056511, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,886" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8870573, - "msecs": 887.0, - "relativeCreated": 1150.196469, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,887" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8871863, - "msecs": 887.0, - "relativeCreated": 1150.325269, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,887" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8873188, - "msecs": 887.0, - "relativeCreated": 1150.457859, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,887" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.8874495, - "msecs": 887.0, - "relativeCreated": 1150.588641, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,887" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.887573, - "msecs": 887.0, - "relativeCreated": 1150.712052, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:00,887" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638760.9281652, - "msecs": 928.0, - "relativeCreated": 1191.304024, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:00,928" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.livingroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638761.0406694, - "msecs": 40.0, - "relativeCreated": 1303.808329, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.livingroom)): False ()", - "asctime": "2025-08-19 23:26:01,040" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.livingroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638761.040796, - "msecs": 40.0, - "relativeCreated": 1303.935139, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.livingroom)): result = False ()", - "asctime": "2025-08-19 23:26:01,040" - } - ], - "time_consumption": 5.1021575927734375e-05 - } - ], - "time_consumption": 0.6034142971038818, - "time_start": "2025-08-19 23:26:00,437", - "time_finished": "2025-08-19 23:26:01,040" - }, - "REQ-0002": { - "name": "__tLogger__", - "msg": "REQ-0002", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638761.041113, - "msecs": 41.0, - "relativeCreated": 1304.251742, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0002", - "asctime": "2025-08-19 23:26:01,041", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638761.141576, - "msecs": 141.0, - "relativeCreated": 1404.714931, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:01,141", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.041283, - "msecs": 41.0, - "relativeCreated": 1304.421727, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:01,041" - } - ], - "time_consumption": 0.10029315948486328 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638761.2420833, - "msecs": 242.0, - "relativeCreated": 1505.222382, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:01,242", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638761.24191, - "msecs": 241.0, - "relativeCreated": 1505.048998, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:01,241" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638761.2420359, - "msecs": 242.0, - "relativeCreated": 1505.174906, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:01,242" - } - ], - "time_consumption": 4.744529724121094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.livingroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638761.2421787, - "msecs": 242.0, - "relativeCreated": 1505.317567, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.livingroom) to True", - "asctime": "2025-08-19 23:26:01,242", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", + "msg": "Value for Shelly.relay/0 (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", "args": [ "True", "" @@ -3267,670 +2605,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638761.4431667, - "msecs": 443.0, - "relativeCreated": 1706.305723, - "thread": 131449228267776, + "created": 1755888839.1293669, + "msecs": 129.0, + "relativeCreated": 1004.176053, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:01,443", + "message": "Value for Shelly.relay/0 (ffe.livingroom.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:53:59,129", "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.2422974, - "msecs": 242.0, - "relativeCreated": 1505.436456, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:01,242" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.2425532, - "msecs": 242.0, - "relativeCreated": 1505.692272, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,242" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2431564, - "msecs": 243.0, - "relativeCreated": 1506.295586, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:01,243" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2434788, - "msecs": 243.0, - "relativeCreated": 1506.617861, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,243" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.24617, - "msecs": 246.0, - "relativeCreated": 1509.309045, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,246" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.246439, - "msecs": 246.0, - "relativeCreated": 1509.577794, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,246" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.246694, - "msecs": 246.0, - "relativeCreated": 1509.833082, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,246" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.2468417, - "msecs": 246.0, - "relativeCreated": 1509.980727, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,246" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2471719, - "msecs": 247.0, - "relativeCreated": 1510.310868, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,247" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.247355, - "msecs": 247.0, - "relativeCreated": 1510.493881, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,247" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2475755, - "msecs": 247.0, - "relativeCreated": 1510.714436, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,247" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.2477221, - "msecs": 247.0, - "relativeCreated": 1510.861327, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,247" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2480285, - "msecs": 248.0, - "relativeCreated": 1511.167326, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,248" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.248227, - "msecs": 248.0, - "relativeCreated": 1511.36594, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,248" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2484565, - "msecs": 248.0, - "relativeCreated": 1511.595482, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,248" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.2485924, - "msecs": 248.0, - "relativeCreated": 1511.731458, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,248" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2488754, - "msecs": 248.0, - "relativeCreated": 1512.014203, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:01,248" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2491996, - "msecs": 249.0, - "relativeCreated": 1512.338681, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,249" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2494297, - "msecs": 249.0, - "relativeCreated": 1512.568692, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,249" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2496192, - "msecs": 249.0, - "relativeCreated": 1512.758146, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,249" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2498097, - "msecs": 249.0, - "relativeCreated": 1512.948788, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,249" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2500145, - "msecs": 250.0, - "relativeCreated": 1513.153499, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,250" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.2502139, - "msecs": 250.0, - "relativeCreated": 1513.352782, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,250" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.290101, - "msecs": 290.0, - "relativeCreated": 1553.240002, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:01,290" - }, { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/ffe/livingroom/main_light", + "Value for Shelly.relay/0 (ffe.livingroom.main_light)", "True", "" ], @@ -3943,22 +2633,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638761.4430118, - "msecs": 443.0, - "relativeCreated": 1706.150905, - "thread": 131449228267776, + "created": 1755888839.1292834, + "msecs": 129.0, + "relativeCreated": 1004.09247, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): True ()", - "asctime": "2025-08-19 23:26:01,443" + "message": "Result (Value for Shelly.relay/0 (ffe.livingroom.main_light)): True ()", + "asctime": "2025-08-22 20:53:59,129" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/ffe/livingroom/main_light", + "Value for Shelly.relay/0 (ffe.livingroom.main_light)", "=", "True", "" @@ -3972,12979 +2662,16 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638761.4431233, - "msecs": 443.0, - "relativeCreated": 1706.262361, - "thread": 131449228267776, + "created": 1755888839.1293306, + "msecs": 129.0, + "relativeCreated": 1004.139886, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = True ()", - "asctime": "2025-08-19 23:26:01,443" - } - ], - "time_consumption": 4.3392181396484375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.livingroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638761.4432795, - "msecs": 443.0, - "relativeCreated": 1706.41873, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.livingroom) to False", - "asctime": "2025-08-19 23:26:01,443", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638761.6439888, - "msecs": 643.0, - "relativeCreated": 1907.127858, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:01,643", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.4433708, - "msecs": 443.0, - "relativeCreated": 1706.509635, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:01,443" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4439237, - "msecs": 443.0, - "relativeCreated": 1707.062611, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:01,443" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4457397, - "msecs": 445.0, - "relativeCreated": 1708.87887, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:01,445" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.4460707, - "msecs": 446.0, - "relativeCreated": 1709.209801, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,446" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4462578, - "msecs": 446.0, - "relativeCreated": 1709.396828, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:01,446" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.4463608, - "msecs": 446.0, - "relativeCreated": 1709.499942, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,446" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4465756, - "msecs": 446.0, - "relativeCreated": 1709.714596, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:01,446" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.4467144, - "msecs": 446.0, - "relativeCreated": 1709.853404, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,446" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4468873, - "msecs": 446.0, - "relativeCreated": 1710.026288, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:01,446" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.447016, - "msecs": 447.0, - "relativeCreated": 1710.154898, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,447" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4472246, - "msecs": 447.0, - "relativeCreated": 1710.363679, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:01,447" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.4473515, - "msecs": 447.0, - "relativeCreated": 1710.49064, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,447" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.447497, - "msecs": 447.0, - "relativeCreated": 1710.635954, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:01,447" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.4475942, - "msecs": 447.0, - "relativeCreated": 1710.733133, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,447" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4477792, - "msecs": 447.0, - "relativeCreated": 1710.918106, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:01,447" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4479825, - "msecs": 447.0, - "relativeCreated": 1711.121614, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,447" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4481282, - "msecs": 448.0, - "relativeCreated": 1711.267348, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,448" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.448276, - "msecs": 448.0, - "relativeCreated": 1711.414991, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,448" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4484234, - "msecs": 448.0, - "relativeCreated": 1711.562363, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,448" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.448549, - "msecs": 448.0, - "relativeCreated": 1711.688119, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,448" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.4486983, - "msecs": 448.0, - "relativeCreated": 1711.837359, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,448" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.489183, - "msecs": 489.0, - "relativeCreated": 1752.322058, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:01,489" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638761.6437862, - "msecs": 643.0, - "relativeCreated": 1906.925285, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): False ()", - "asctime": "2025-08-19 23:26:01,643" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638761.6439183, - "msecs": 643.0, - "relativeCreated": 1907.057267, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = False ()", - "asctime": "2025-08-19 23:26:01,643" - } - ], - "time_consumption": 7.05718994140625e-05 - } - ], - "time_consumption": 0.6028759479522705, - "time_start": "2025-08-19 23:26:01,041", - "time_finished": "2025-08-19 23:26:01,643" - }, - "REQ-0003": { - "name": "__tLogger__", - "msg": "REQ-0003", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638761.6442542, - "msecs": 644.0, - "relativeCreated": 1907.393235, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0003", - "asctime": "2025-08-19 23:26:01,644", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638761.744741, - "msecs": 744.0, - "relativeCreated": 2007.879965, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:01,744", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.6443925, - "msecs": 644.0, - "relativeCreated": 1907.531504, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", - "asctime": "2025-08-19 23:26:01,644" - } - ], - "time_consumption": 0.10034847259521484 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638761.8452554, - "msecs": 845.0, - "relativeCreated": 2108.39439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:01,845", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638761.845094, - "msecs": 845.0, - "relativeCreated": 2108.232849, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:01,845" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638761.8452063, - "msecs": 845.0, - "relativeCreated": 2108.345343, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:01,845" - } - ], - "time_consumption": 4.9114227294921875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638761.8453507, - "msecs": 845.0, - "relativeCreated": 2108.489691, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to True", - "asctime": "2025-08-19 23:26:01,845", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638762.0461683, - "msecs": 46.0, - "relativeCreated": 2309.307267, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:02,046", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.8454487, - "msecs": 845.0, - "relativeCreated": 2108.587641, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload true", - "asctime": "2025-08-19 23:26:01,845" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.8481452, - "msecs": 848.0, - "relativeCreated": 2111.284083, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,848" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.848483, - "msecs": 848.0, - "relativeCreated": 2111.622019, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,848" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.8488507, - "msecs": 848.0, - "relativeCreated": 2111.989785, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,848" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.8490386, - "msecs": 849.0, - "relativeCreated": 2112.177617, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,849" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.849417, - "msecs": 849.0, - "relativeCreated": 2112.556013, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,849" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.849624, - "msecs": 849.0, - "relativeCreated": 2112.762861, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,849" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.8498707, - "msecs": 849.0, - "relativeCreated": 2113.009587, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,849" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.855752, - "msecs": 855.0, - "relativeCreated": 2118.890947, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,855" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.856225, - "msecs": 856.0, - "relativeCreated": 2119.363914, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,856" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.856471, - "msecs": 856.0, - "relativeCreated": 2119.609975, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,856" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.8566935, - "msecs": 856.0, - "relativeCreated": 2119.83241, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:01,856" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638761.8568027, - "msecs": 856.0, - "relativeCreated": 2119.941878, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:01,856" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.8570466, - "msecs": 857.0, - "relativeCreated": 2120.185553, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,857" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.8572721, - "msecs": 857.0, - "relativeCreated": 2120.41103, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,857" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.857463, - "msecs": 857.0, - "relativeCreated": 2120.601881, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,857" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.8576028, - "msecs": 857.0, - "relativeCreated": 2120.741755, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,857" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.857741, - "msecs": 857.0, - "relativeCreated": 2120.880113, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,857" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.857876, - "msecs": 857.0, - "relativeCreated": 2121.015053, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:01,857" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638761.898379, - "msecs": 898.0, - "relativeCreated": 2161.517917, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:01,898" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638762.0460222, - "msecs": 46.0, - "relativeCreated": 2309.161096, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Floorlamp (ffe.livingroom)): True ()", - "asctime": "2025-08-19 23:26:02,046" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638762.0461226, - "msecs": 46.0, - "relativeCreated": 2309.261431, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Floorlamp (ffe.livingroom)): result = True ()", - "asctime": "2025-08-19 23:26:02,046" - } - ], - "time_consumption": 4.57763671875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638762.0462704, - "msecs": 46.0, - "relativeCreated": 2309.409404, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to False", - "asctime": "2025-08-19 23:26:02,046", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638762.2470841, - "msecs": 247.0, - "relativeCreated": 2510.223125, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:02,247", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.0463662, - "msecs": 46.0, - "relativeCreated": 2309.505318, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", - "asctime": "2025-08-19 23:26:02,046" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.049033, - "msecs": 49.0, - "relativeCreated": 2312.171843, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:02,049" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.0493314, - "msecs": 49.0, - "relativeCreated": 2312.47057, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,049" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.049628, - "msecs": 49.0, - "relativeCreated": 2312.766974, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:02,049" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.0497837, - "msecs": 49.0, - "relativeCreated": 2312.922906, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,049" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.050091, - "msecs": 50.0, - "relativeCreated": 2313.229889, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:02,050" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.0502431, - "msecs": 50.0, - "relativeCreated": 2313.38218, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,050" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.0504582, - "msecs": 50.0, - "relativeCreated": 2313.597049, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:02,050" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.0505927, - "msecs": 50.0, - "relativeCreated": 2313.731729, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,050" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.0508687, - "msecs": 50.0, - "relativeCreated": 2314.007762, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:02,050" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.0510292, - "msecs": 51.0, - "relativeCreated": 2314.168358, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,051" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.051299, - "msecs": 51.0, - "relativeCreated": 2314.438076, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:02,051" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.0514963, - "msecs": 51.0, - "relativeCreated": 2314.635287, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,051" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.0517457, - "msecs": 51.0, - "relativeCreated": 2314.884579, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,051" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.051998, - "msecs": 51.0, - "relativeCreated": 2315.137004, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,051" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.052202, - "msecs": 52.0, - "relativeCreated": 2315.341086, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,052" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.0523922, - "msecs": 52.0, - "relativeCreated": 2315.531159, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,052" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.0525775, - "msecs": 52.0, - "relativeCreated": 2315.716465, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,052" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.0527682, - "msecs": 52.0, - "relativeCreated": 2315.90734, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,052" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.092129, - "msecs": 92.0, - "relativeCreated": 2355.267921, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:02,092" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638762.246881, - "msecs": 246.0, - "relativeCreated": 2510.020134, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Floorlamp (ffe.livingroom)): False ()", - "asctime": "2025-08-19 23:26:02,246" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638762.247013, - "msecs": 247.0, - "relativeCreated": 2510.152181, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Floorlamp (ffe.livingroom)): result = False ()", - "asctime": "2025-08-19 23:26:02,247" - } - ], - "time_consumption": 7.104873657226562e-05 - } - ], - "time_consumption": 0.6028299331665039, - "time_start": "2025-08-19 23:26:01,644", - "time_finished": "2025-08-19 23:26:02,247" - }, - "REQ-0004": { - "name": "__tLogger__", - "msg": "REQ-0004", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638762.247326, - "msecs": 247.0, - "relativeCreated": 2510.464985, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0004", - "asctime": "2025-08-19 23:26:02,247", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638762.3477724, - "msecs": 347.0, - "relativeCreated": 2610.911487, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:02,347", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.2474592, - "msecs": 247.0, - "relativeCreated": 2510.598111, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", - "asctime": "2025-08-19 23:26:02,247" - } - ], - "time_consumption": 0.10031318664550781 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638762.4482872, - "msecs": 448.0, - "relativeCreated": 2711.42627, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:02,448", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638762.4480956, - "msecs": 448.0, - "relativeCreated": 2711.234439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:02,448" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638762.448235, - "msecs": 448.0, - "relativeCreated": 2711.37412, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:02,448" - } - ], - "time_consumption": 5.221366882324219e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Floorlamp (ffe.livingroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638762.4484353, - "msecs": 448.0, - "relativeCreated": 2711.57423, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Floorlamp (ffe.livingroom) to True", - "asctime": "2025-08-19 23:26:02,448", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638762.650331, - "msecs": 650.0, - "relativeCreated": 2913.470191, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:02,650", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.4486122, - "msecs": 448.0, - "relativeCreated": 2711.751085, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,448" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.448859, - "msecs": 448.0, - "relativeCreated": 2711.997932, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,448" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.4491289, - "msecs": 449.0, - "relativeCreated": 2712.268033, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,449" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.4493856, - "msecs": 449.0, - "relativeCreated": 2712.524757, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,449" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.449608, - "msecs": 449.0, - "relativeCreated": 2712.747168, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,449" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.449774, - "msecs": 449.0, - "relativeCreated": 2712.913006, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,449" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.4501736, - "msecs": 450.0, - "relativeCreated": 2713.312737, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,450" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.4505358, - "msecs": 450.0, - "relativeCreated": 2713.674719, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,450" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.4507682, - "msecs": 450.0, - "relativeCreated": 2713.907186, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,450" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.4509895, - "msecs": 450.0, - "relativeCreated": 2714.128662, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,450" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.451213, - "msecs": 451.0, - "relativeCreated": 2714.351762, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,451" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.4922988, - "msecs": 492.0, - "relativeCreated": 2755.437683, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,492" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.4924974, - "msecs": 492.0, - "relativeCreated": 2755.636297, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:02,492" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638762.6501482, - "msecs": 650.0, - "relativeCreated": 2913.287051, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): True ()", - "asctime": "2025-08-19 23:26:02,650" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638762.650282, - "msecs": 650.0, - "relativeCreated": 2913.42103, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = True ()", - "asctime": "2025-08-19 23:26:02,650" - } - ], - "time_consumption": 4.9114227294921875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Floorlamp (ffe.livingroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638762.6504867, - "msecs": 650.0, - "relativeCreated": 2913.625809, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Floorlamp (ffe.livingroom) to False", - "asctime": "2025-08-19 23:26:02,650", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638762.8525558, - "msecs": 852.0, - "relativeCreated": 3115.694887, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:02,852", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.6506555, - "msecs": 650.0, - "relativeCreated": 2913.79437, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,650" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.6509473, - "msecs": 650.0, - "relativeCreated": 2914.086251, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,650" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.651165, - "msecs": 651.0, - "relativeCreated": 2914.303839, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,651" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.6514509, - "msecs": 651.0, - "relativeCreated": 2914.589949, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,651" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.6516306, - "msecs": 651.0, - "relativeCreated": 2914.769652, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,651" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638762.6518147, - "msecs": 651.0, - "relativeCreated": 2914.953779, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:02,651" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.6521633, - "msecs": 652.0, - "relativeCreated": 2915.30225, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,652" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.652499, - "msecs": 652.0, - "relativeCreated": 2915.637946, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,652" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.6527486, - "msecs": 652.0, - "relativeCreated": 2915.887615, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,652" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.6529932, - "msecs": 652.0, - "relativeCreated": 2916.132285, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,652" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.6532066, - "msecs": 653.0, - "relativeCreated": 2916.345472, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,653" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.6935568, - "msecs": 693.0, - "relativeCreated": 2956.695632, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:02,693" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638762.69394, - "msecs": 693.0, - "relativeCreated": 2957.078975, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:02,693" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638762.8523793, - "msecs": 852.0, - "relativeCreated": 3115.518435, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): False ()", - "asctime": "2025-08-19 23:26:02,852" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638762.8525028, - "msecs": 852.0, - "relativeCreated": 3115.641782, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = False ()", - "asctime": "2025-08-19 23:26:02,852" - } - ], - "time_consumption": 5.2928924560546875e-05 - } - ], - "time_consumption": 0.6052298545837402, - "time_start": "2025-08-19 23:26:02,247", - "time_finished": "2025-08-19 23:26:02,852" - }, - "REQ-0005": { - "name": "__tLogger__", - "msg": "REQ-0005", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638762.8528132, - "msecs": 852.0, - "relativeCreated": 3115.952438, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0005", - "asctime": "2025-08-19 23:26:02,852", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638762.9534755, - "msecs": 953.0, - "relativeCreated": 3216.614599, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:02,953", - "moduleLogger": [ - { - "name": "smart_brain.devices.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638762.852957, - "msecs": 852.0, - "relativeCreated": 3116.095876, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:26:02,852" - }, - { - "name": "smart_brain.devices.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638762.8530157, - "msecs": 853.0, - "relativeCreated": 3116.15451, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:26:02,853" - }, - { - "name": "smart_brain.devices.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638762.853056, - "msecs": 853.0, - "relativeCreated": 3116.195001, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:26:02,853" - }, - { - "name": "smart_brain.devices.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638762.853112, - "msecs": 853.0, - "relativeCreated": 3116.251081, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:26:02,853" - }, - { - "name": "smart_brain.devices.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638762.8531425, - "msecs": 853.0, - "relativeCreated": 3116.281571, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:26:02,853" - }, - { - "name": "smart_brain.devices.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638762.8531733, - "msecs": 853.0, - "relativeCreated": 3116.312147, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:26:02,853" - } - ], - "time_consumption": 0.10030221939086914 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638763.0540743, - "msecs": 54.0, - "relativeCreated": 3317.213387, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:03,054", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638763.0538807, - "msecs": 53.0, - "relativeCreated": 3317.019704, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:03,053" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638763.054025, - "msecs": 54.0, - "relativeCreated": 3317.164013, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:03,054" - } - ], - "time_consumption": 4.935264587402344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.livingroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638763.0543246, - "msecs": 54.0, - "relativeCreated": 3317.463774, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.livingroom) to True", - "asctime": "2025-08-19 23:26:03,054", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638763.255546, - "msecs": 255.0, - "relativeCreated": 3518.685059, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:03,255", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.0544667, - "msecs": 54.0, - "relativeCreated": 3317.60587, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:03,054" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.054784, - "msecs": 54.0, - "relativeCreated": 3317.922977, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,054" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.055682, - "msecs": 55.0, - "relativeCreated": 3318.821099, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:03,055" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.056045, - "msecs": 56.0, - "relativeCreated": 3319.184116, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,056" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0963118, - "msecs": 96.0, - "relativeCreated": 3359.450898, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,096" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.096491, - "msecs": 96.0, - "relativeCreated": 3359.630065, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,096" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0966723, - "msecs": 96.0, - "relativeCreated": 3359.811341, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,096" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.0967507, - "msecs": 96.0, - "relativeCreated": 3359.889739, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,096" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0969012, - "msecs": 96.0, - "relativeCreated": 3360.040038, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,096" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.0969741, - "msecs": 96.0, - "relativeCreated": 3360.112987, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,096" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0970976, - "msecs": 97.0, - "relativeCreated": 3360.236778, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.0971665, - "msecs": 97.0, - "relativeCreated": 3360.305552, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0973024, - "msecs": 97.0, - "relativeCreated": 3360.441608, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.0973907, - "msecs": 97.0, - "relativeCreated": 3360.529523, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0974867, - "msecs": 97.0, - "relativeCreated": 3360.625741, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.0975466, - "msecs": 97.0, - "relativeCreated": 3360.685445, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0976574, - "msecs": 97.0, - "relativeCreated": 3360.796255, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0977936, - "msecs": 97.0, - "relativeCreated": 3360.932526, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0978854, - "msecs": 97.0, - "relativeCreated": 3361.024384, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0979848, - "msecs": 97.0, - "relativeCreated": 3361.123734, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,097" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0980814, - "msecs": 98.0, - "relativeCreated": 3361.22033, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,098" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.0981925, - "msecs": 98.0, - "relativeCreated": 3361.331409, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,098" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.1382825, - "msecs": 138.0, - "relativeCreated": 3401.4216, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,138" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.1385028, - "msecs": 138.0, - "relativeCreated": 3401.6419, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:03,138" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638763.2553627, - "msecs": 255.0, - "relativeCreated": 3518.501699, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Floorlamp (ffe.livingroom)): True ()", - "asctime": "2025-08-19 23:26:03,255" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638763.2554953, - "msecs": 255.0, - "relativeCreated": 3518.634419, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Floorlamp (ffe.livingroom)): result = True ()", - "asctime": "2025-08-19 23:26:03,255" - } - ], - "time_consumption": 5.078315734863281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.livingroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638763.2556713, - "msecs": 255.0, - "relativeCreated": 3518.810264, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.livingroom) to False", - "asctime": "2025-08-19 23:26:03,255", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638763.4567082, - "msecs": 456.0, - "relativeCreated": 3719.847047, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Floorlamp (ffe.livingroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:03,456", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.2557824, - "msecs": 255.0, - "relativeCreated": 3518.921336, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:03,255" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2566607, - "msecs": 256.0, - "relativeCreated": 3519.799694, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:03,256" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.259177, - "msecs": 259.0, - "relativeCreated": 3522.315981, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,259" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.2594206, - "msecs": 259.0, - "relativeCreated": 3522.559618, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,259" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.259715, - "msecs": 259.0, - "relativeCreated": 3522.853985, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,259" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.2598865, - "msecs": 259.0, - "relativeCreated": 3523.025645, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,259" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2602143, - "msecs": 260.0, - "relativeCreated": 3523.353288, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,260" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.2603774, - "msecs": 260.0, - "relativeCreated": 3523.516437, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,260" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2606006, - "msecs": 260.0, - "relativeCreated": 3523.739493, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,260" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.26074, - "msecs": 260.0, - "relativeCreated": 3523.879216, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,260" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2610967, - "msecs": 261.0, - "relativeCreated": 3524.23572, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,261" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.2612731, - "msecs": 261.0, - "relativeCreated": 3524.412075, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,261" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.261501, - "msecs": 261.0, - "relativeCreated": 3524.640118, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,261" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.261647, - "msecs": 261.0, - "relativeCreated": 3524.786029, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:03,261" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.261924, - "msecs": 261.0, - "relativeCreated": 3525.063187, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:03,261" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2621605, - "msecs": 262.0, - "relativeCreated": 3525.299707, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,262" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2623663, - "msecs": 262.0, - "relativeCreated": 3525.505329, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,262" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2625647, - "msecs": 262.0, - "relativeCreated": 3525.70365, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,262" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2627583, - "msecs": 262.0, - "relativeCreated": 3525.897042, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,262" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.2629952, - "msecs": 262.0, - "relativeCreated": 3526.134196, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,262" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.263204, - "msecs": 263.0, - "relativeCreated": 3526.34322, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:03,263" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.3032582, - "msecs": 303.0, - "relativeCreated": 3566.397081, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:03,303" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638763.456537, - "msecs": 456.0, - "relativeCreated": 3719.676038, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Floorlamp (ffe.livingroom)): False ()", - "asctime": "2025-08-19 23:26:03,456" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Floorlamp (ffe.livingroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638763.456656, - "msecs": 456.0, - "relativeCreated": 3719.794864, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Floorlamp (ffe.livingroom)): result = False ()", - "asctime": "2025-08-19 23:26:03,456" - } - ], - "time_consumption": 5.221366882324219e-05 - } - ], - "time_consumption": 0.6038949489593506, - "time_start": "2025-08-19 23:26:02,852", - "time_finished": "2025-08-19 23:26:03,456" - }, - "REQ-0006": { - "name": "__tLogger__", - "msg": "REQ-0006", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638763.456971, - "msecs": 456.0, - "relativeCreated": 3720.109979, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0006", - "asctime": "2025-08-19 23:26:03,456", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638763.5574484, - "msecs": 557.0, - "relativeCreated": 3820.587539, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:03,557", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.4571183, - "msecs": 457.0, - "relativeCreated": 3720.257181, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload false", - "asctime": "2025-08-19 23:26:03,457" - } - ], - "time_consumption": 0.10033011436462402 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638763.6580217, - "msecs": 658.0, - "relativeCreated": 3921.160568, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:03,658", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638763.6577969, - "msecs": 657.0, - "relativeCreated": 3920.935944, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:03,657" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638763.6579442, - "msecs": 657.0, - "relativeCreated": 3921.083406, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:03,657" - } - ], - "time_consumption": 7.748603820800781e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/xmas_tree", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638763.6581357, - "msecs": 658.0, - "relativeCreated": 3921.274545, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/xmas_tree to True", - "asctime": "2025-08-19 23:26:03,658", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for X-Mas Tree (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638763.85888, - "msecs": 858.0, - "relativeCreated": 4122.019091, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for X-Mas Tree (ffe.livingroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:03,858", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.6582391, - "msecs": 658.0, - "relativeCreated": 3921.378199, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload true", - "asctime": "2025-08-19 23:26:03,658" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.6602168, - "msecs": 660.0, - "relativeCreated": 3923.355841, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,660" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.6604328, - "msecs": 660.0, - "relativeCreated": 3923.571926, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:03,660" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.6608553, - "msecs": 660.0, - "relativeCreated": 3923.994202, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:03,660" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.7022781, - "msecs": 702.0, - "relativeCreated": 3965.417103, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'true'", - "asctime": "2025-08-19 23:26:03,702" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for X-Mas Tree (ffe.livingroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638763.8587635, - "msecs": 858.0, - "relativeCreated": 4121.902444, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for X-Mas Tree (ffe.livingroom)): True ()", - "asctime": "2025-08-19 23:26:03,858" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for X-Mas Tree (ffe.livingroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638763.8588536, - "msecs": 858.0, - "relativeCreated": 4121.992721, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for X-Mas Tree (ffe.livingroom)): result = True ()", - "asctime": "2025-08-19 23:26:03,858" - } - ], - "time_consumption": 2.6464462280273438e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/xmas_tree", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638763.8589609, - "msecs": 858.0, - "relativeCreated": 4122.100022, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/xmas_tree to False", - "asctime": "2025-08-19 23:26:03,858", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for X-Mas Tree (ffe.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638764.0595388, - "msecs": 59.0, - "relativeCreated": 4322.678075, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for X-Mas Tree (ffe.livingroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:04,059", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.8590305, - "msecs": 859.0, - "relativeCreated": 4122.169621, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload false", - "asctime": "2025-08-19 23:26:03,859" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.8599885, - "msecs": 859.0, - "relativeCreated": 4123.127431, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,859" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638763.8601127, - "msecs": 860.0, - "relativeCreated": 4123.251614, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:03,860" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.8603399, - "msecs": 860.0, - "relativeCreated": 4123.479078, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:03,860" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638763.9016905, - "msecs": 901.0, - "relativeCreated": 4164.829351, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'false'", - "asctime": "2025-08-19 23:26:03,901" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for X-Mas Tree (ffe.livingroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638764.0593765, - "msecs": 59.0, - "relativeCreated": 4322.515467, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for X-Mas Tree (ffe.livingroom)): False ()", - "asctime": "2025-08-19 23:26:04,059" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for X-Mas Tree (ffe.livingroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638764.0594926, - "msecs": 59.0, - "relativeCreated": 4322.631563, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for X-Mas Tree (ffe.livingroom)): result = False ()", - "asctime": "2025-08-19 23:26:04,059" - } - ], - "time_consumption": 4.6253204345703125e-05 - } - ], - "time_consumption": 0.6025679111480713, - "time_start": "2025-08-19 23:26:03,456", - "time_finished": "2025-08-19 23:26:04,059" - }, - "REQ-0007": { - "name": "__tLogger__", - "msg": "REQ-0007", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638764.0597541, - "msecs": 59.0, - "relativeCreated": 4322.893125, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0007", - "asctime": "2025-08-19 23:26:04,059", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638764.160184, - "msecs": 160.0, - "relativeCreated": 4423.322848, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:04,160", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.0598712, - "msecs": 59.0, - "relativeCreated": 4323.010189, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload false", - "asctime": "2025-08-19 23:26:04,059" - } - ], - "time_consumption": 0.10031270980834961 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638764.260756, - "msecs": 260.0, - "relativeCreated": 4523.894999, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:04,260", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638764.2605734, - "msecs": 260.0, - "relativeCreated": 4523.712433, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:04,260" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638764.2606928, - "msecs": 260.0, - "relativeCreated": 4523.831835, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:04,260" - } - ], - "time_consumption": 6.318092346191406e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "X-Mas Tree (ffe.livingroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638764.2608607, - "msecs": 260.0, - "relativeCreated": 4523.999561, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of X-Mas Tree (ffe.livingroom) to True", - "asctime": "2025-08-19 23:26:04,260", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/xmas_tree is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638764.4616337, - "msecs": 461.0, - "relativeCreated": 4724.77288, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/xmas_tree is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:04,461", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.2609844, - "msecs": 260.0, - "relativeCreated": 4524.123441, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:04,260" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.2616827, - "msecs": 261.0, - "relativeCreated": 4524.821616, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:04,261" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.2629647, - "msecs": 262.0, - "relativeCreated": 4526.103708, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'true'", - "asctime": "2025-08-19 23:26:04,262" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/xmas_tree", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638764.4614217, - "msecs": 461.0, - "relativeCreated": 4724.560736, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/xmas_tree): True ()", - "asctime": "2025-08-19 23:26:04,461" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/xmas_tree", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638764.4615781, - "msecs": 461.0, - "relativeCreated": 4724.717264, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/xmas_tree): result = True ()", - "asctime": "2025-08-19 23:26:04,461" - } - ], - "time_consumption": 5.555152893066406e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "X-Mas Tree (ffe.livingroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638764.461751, - "msecs": 461.0, - "relativeCreated": 4724.889946, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of X-Mas Tree (ffe.livingroom) to False", - "asctime": "2025-08-19 23:26:04,461", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/xmas_tree is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638764.6626332, - "msecs": 662.0, - "relativeCreated": 4925.772154, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/xmas_tree is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:04,662", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.4619253, - "msecs": 461.0, - "relativeCreated": 4725.064299, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:04,461" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/xmas-tree", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.4628203, - "msecs": 462.0, - "relativeCreated": 4725.959426, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:04,462" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/xmas_tree/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.4640186, - "msecs": 464.0, - "relativeCreated": 4727.157776, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'false'", - "asctime": "2025-08-19 23:26:04,464" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/xmas_tree", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638764.6624343, - "msecs": 662.0, - "relativeCreated": 4925.573413, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/xmas_tree): False ()", - "asctime": "2025-08-19 23:26:04,662" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/xmas_tree", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638764.6625776, - "msecs": 662.0, - "relativeCreated": 4925.716717, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/xmas_tree): result = False ()", - "asctime": "2025-08-19 23:26:04,662" - } - ], - "time_consumption": 5.555152893066406e-05 - } - ], - "time_consumption": 0.6028790473937988, - "time_start": "2025-08-19 23:26:04,059", - "time_finished": "2025-08-19 23:26:04,662" - }, - "REQ-0010": { - "name": "__tLogger__", - "msg": "REQ-0010", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638764.6629257, - "msecs": 662.0, - "relativeCreated": 4926.064789, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0010", - "asctime": "2025-08-19 23:26:04,662", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638764.7636087, - "msecs": 763.0, - "relativeCreated": 5026.747657, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:04,763", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.6630495, - "msecs": 663.0, - "relativeCreated": 4926.188484, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:04,663" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.663348, - "msecs": 663.0, - "relativeCreated": 4926.486879, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,663" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.6642456, - "msecs": 664.0, - "relativeCreated": 4927.384636, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:04,664" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.66461, - "msecs": 664.0, - "relativeCreated": 4927.748866, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,664" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.706283, - "msecs": 706.0, - "relativeCreated": 4969.421952, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:04,706" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.7064993, - "msecs": 706.0, - "relativeCreated": 4969.638264, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,706" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7067313, - "msecs": 706.0, - "relativeCreated": 4969.870143, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:04,706" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.7068594, - "msecs": 706.0, - "relativeCreated": 4969.998154, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,706" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.707078, - "msecs": 707.0, - "relativeCreated": 4970.21696, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.707179, - "msecs": 707.0, - "relativeCreated": 4970.318091, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7073164, - "msecs": 707.0, - "relativeCreated": 4970.455458, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.7074068, - "msecs": 707.0, - "relativeCreated": 4970.545912, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7075703, - "msecs": 707.0, - "relativeCreated": 4970.709423, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.7076569, - "msecs": 707.0, - "relativeCreated": 4970.795918, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7077813, - "msecs": 707.0, - "relativeCreated": 4970.920347, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.7078645, - "msecs": 707.0, - "relativeCreated": 4971.003671, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,707" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7081482, - "msecs": 708.0, - "relativeCreated": 4971.287167, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:04,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7082887, - "msecs": 708.0, - "relativeCreated": 4971.42767, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.708422, - "msecs": 708.0, - "relativeCreated": 4971.560794, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7085397, - "msecs": 708.0, - "relativeCreated": 4971.678629, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7086582, - "msecs": 708.0, - "relativeCreated": 4971.797089, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7087758, - "msecs": 708.0, - "relativeCreated": 4971.914671, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7089014, - "msecs": 708.0, - "relativeCreated": 4972.040452, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,708" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.749426, - "msecs": 749.0, - "relativeCreated": 5012.564945, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:04,749" - } - ], - "time_consumption": 0.014182806015014648 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638764.8643835, - "msecs": 864.0, - "relativeCreated": 5127.522495, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:04,864", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.7638576, - "msecs": 763.0, - "relativeCreated": 5026.996603, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:04,763" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.7641344, - "msecs": 764.0, - "relativeCreated": 5027.273507, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,764" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.765962, - "msecs": 765.0, - "relativeCreated": 5029.101043, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:04,765" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.7662566, - "msecs": 766.0, - "relativeCreated": 5029.395683, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,766" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.8073046, - "msecs": 807.0, - "relativeCreated": 5070.443675, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:04,807" - } - ], - "time_consumption": 0.05707883834838867 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638764.9651694, - "msecs": 965.0, - "relativeCreated": 5228.308502, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:04,965", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638764.9649355, - "msecs": 964.0, - "relativeCreated": 5228.074467, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:04,964" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638764.965108, - "msecs": 965.0, - "relativeCreated": 5228.247061, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:04,965" - } - ], - "time_consumption": 6.151199340820312e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638764.9652836, - "msecs": 965.0, - "relativeCreated": 5228.422539, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:04,965", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638765.1660588, - "msecs": 166.0, - "relativeCreated": 5429.197878, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:05,166", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.9653962, - "msecs": 965.0, - "relativeCreated": 5228.535255, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:26:04,965" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.9676445, - "msecs": 967.0, - "relativeCreated": 5230.783391, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:04,967" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638764.9678807, - "msecs": 967.0, - "relativeCreated": 5231.019712, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:04,967" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638764.968498, - "msecs": 968.0, - "relativeCreated": 5231.636907, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:04,968" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.0092301, - "msecs": 9.0, - "relativeCreated": 5272.368979, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:05,009" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638765.1658835, - "msecs": 165.0, - "relativeCreated": 5429.022553, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:05,165" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638765.1660113, - "msecs": 166.0, - "relativeCreated": 5429.150272, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:05,166" - } - ], - "time_consumption": 4.744529724121094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638765.1661577, - "msecs": 166.0, - "relativeCreated": 5429.296858, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 20", - "asctime": "2025-08-19 23:26:05,166", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638765.3667336, - "msecs": 366.0, - "relativeCreated": 5629.872495, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:05,366", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.1662648, - "msecs": 166.0, - "relativeCreated": 5429.403915, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:26:05,166" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.1680582, - "msecs": 168.0, - "relativeCreated": 5431.196996, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:05,168" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.1683042, - "msecs": 168.0, - "relativeCreated": 5431.443245, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:05,168" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.1688066, - "msecs": 168.0, - "relativeCreated": 5431.945754, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:05,168" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.2101536, - "msecs": 210.0, - "relativeCreated": 5473.292492, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:05,210" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638765.3666387, - "msecs": 366.0, - "relativeCreated": 5629.777562, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 20 ()", - "asctime": "2025-08-19 23:26:05,366" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638765.3667102, - "msecs": 366.0, - "relativeCreated": 5629.849358, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:05,366" - } - ], - "time_consumption": 2.3365020751953125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638765.3668013, - "msecs": 366.0, - "relativeCreated": 5629.940058, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 40", - "asctime": "2025-08-19 23:26:05,366", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638765.5673754, - "msecs": 567.0, - "relativeCreated": 5830.514308, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:05,567", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.3668609, - "msecs": 366.0, - "relativeCreated": 5629.999725, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:26:05,366" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.367949, - "msecs": 367.0, - "relativeCreated": 5631.088148, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:05,367" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.368063, - "msecs": 368.0, - "relativeCreated": 5631.202092, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:05,368" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.3682504, - "msecs": 368.0, - "relativeCreated": 5631.389368, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:05,368" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.4102173, - "msecs": 410.0, - "relativeCreated": 5673.356151, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:05,410" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638765.5672061, - "msecs": 567.0, - "relativeCreated": 5830.345031, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 40 ()", - "asctime": "2025-08-19 23:26:05,567" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638765.5673158, - "msecs": 567.0, - "relativeCreated": 5830.454646, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:05,567" - } - ], - "time_consumption": 5.9604644775390625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638765.5674727, - "msecs": 567.0, - "relativeCreated": 5830.611539, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 60", - "asctime": "2025-08-19 23:26:05,567", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638765.7681518, - "msecs": 768.0, - "relativeCreated": 6031.290787, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:05,768", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.5675719, - "msecs": 567.0, - "relativeCreated": 5830.711071, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:26:05,567" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.5691514, - "msecs": 569.0, - "relativeCreated": 5832.290581, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:05,569" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.5693872, - "msecs": 569.0, - "relativeCreated": 5832.526146, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:05,569" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.570051, - "msecs": 570.0, - "relativeCreated": 5833.190173, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:05,570" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.6121476, - "msecs": 612.0, - "relativeCreated": 5875.286581, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:05,612" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638765.767991, - "msecs": 767.0, - "relativeCreated": 6031.130088, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 60 ()", - "asctime": "2025-08-19 23:26:05,767" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638765.7681057, - "msecs": 768.0, - "relativeCreated": 6031.244733, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:05,768" - } - ], - "time_consumption": 4.601478576660156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638765.7682486, - "msecs": 768.0, - "relativeCreated": 6031.387526, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 80", - "asctime": "2025-08-19 23:26:05,768", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638765.9689608, - "msecs": 968.0, - "relativeCreated": 6232.099774, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:05,968", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.7683618, - "msecs": 768.0, - "relativeCreated": 6031.500841, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:26:05,768" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.7702909, - "msecs": 770.0, - "relativeCreated": 6033.430055, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:05,770" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.7705748, - "msecs": 770.0, - "relativeCreated": 6033.713763, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:05,770" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.771046, - "msecs": 771.0, - "relativeCreated": 6034.184975, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:05,771" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.8121657, - "msecs": 812.0, - "relativeCreated": 6075.304593, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:05,812" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638765.9687696, - "msecs": 968.0, - "relativeCreated": 6231.908539, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 80 ()", - "asctime": "2025-08-19 23:26:05,968" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638765.9688833, - "msecs": 968.0, - "relativeCreated": 6232.022168, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:05,968" - } - ], - "time_consumption": 7.748603820800781e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638765.9690592, - "msecs": 969.0, - "relativeCreated": 6232.198233, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 100", - "asctime": "2025-08-19 23:26:05,969", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638766.1699271, - "msecs": 169.0, - "relativeCreated": 6433.066127, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:06,169", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.9691525, - "msecs": 969.0, - "relativeCreated": 6232.291548, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:05,969" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.970984, - "msecs": 970.0, - "relativeCreated": 6234.123054, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:05,970" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638765.9712102, - "msecs": 971.0, - "relativeCreated": 6234.349293, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:05,971" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638765.9716783, - "msecs": 971.0, - "relativeCreated": 6234.817183, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:05,971" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638766.0132456, - "msecs": 13.0, - "relativeCreated": 6276.384749, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:06,013" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638766.1697123, - "msecs": 169.0, - "relativeCreated": 6432.851482, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 100 ()", - "asctime": "2025-08-19 23:26:06,169" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638766.169854, - "msecs": 169.0, - "relativeCreated": 6432.99307, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:06,169" - } - ], - "time_consumption": 7.319450378417969e-05 - } - ], - "time_consumption": 1.5070013999938965, - "time_start": "2025-08-19 23:26:04,662", - "time_finished": "2025-08-19 23:26:06,169" - }, - "REQ-0011": { - "name": "__tLogger__", - "msg": "REQ-0011", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638766.1702073, - "msecs": 170.0, - "relativeCreated": 6433.346351, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0011", - "asctime": "2025-08-19 23:26:06,170", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638766.270427, - "msecs": 270.0, - "relativeCreated": 6533.565793, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:06,270", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638766.3709915, - "msecs": 370.0, - "relativeCreated": 6634.130446, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:06,370", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638766.2706702, - "msecs": 270.0, - "relativeCreated": 6533.809009, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:06,270" - } - ], - "time_consumption": 0.10032129287719727 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638766.4715676, - "msecs": 471.0, - "relativeCreated": 6734.706601, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:06,471", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638766.471335, - "msecs": 471.0, - "relativeCreated": 6734.473792, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:06,471" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638766.4714837, - "msecs": 471.0, - "relativeCreated": 6734.622654, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:06,471" - } - ], - "time_consumption": 8.392333984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638766.4716883, - "msecs": 471.0, - "relativeCreated": 6734.827149, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:06,471", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638766.6723776, - "msecs": 672.0, - "relativeCreated": 6935.516646, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:06,672", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638766.471829, - "msecs": 471.0, - "relativeCreated": 6734.968037, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:06,471" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638766.4724493, - "msecs": 472.0, - "relativeCreated": 6735.588189, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:06,472" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638766.4735992, - "msecs": 473.0, - "relativeCreated": 6736.738274, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:06,473" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638766.6722198, - "msecs": 672.0, - "relativeCreated": 6935.358591, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:06,672" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638766.6723309, - "msecs": 672.0, - "relativeCreated": 6935.469846, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:06,672" - } - ], - "time_consumption": 4.673004150390625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638766.6724715, - "msecs": 672.0, - "relativeCreated": 6935.610626, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 20", - "asctime": "2025-08-19 23:26:06,672", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638766.8731685, - "msecs": 873.0, - "relativeCreated": 7136.307352, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:06,873", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638766.672608, - "msecs": 672.0, - "relativeCreated": 6935.74691, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:06,672" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638766.6733239, - "msecs": 673.0, - "relativeCreated": 6936.462826, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:06,673" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638766.674305, - "msecs": 674.0, - "relativeCreated": 6937.443912, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:06,674" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638766.8730009, - "msecs": 873.0, - "relativeCreated": 7136.140009, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 20 ()", - "asctime": "2025-08-19 23:26:06,873" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638766.8731248, - "msecs": 873.0, - "relativeCreated": 7136.263766, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:06,873" - } - ], - "time_consumption": 4.363059997558594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638766.873266, - "msecs": 873.0, - "relativeCreated": 7136.404807, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 40", - "asctime": "2025-08-19 23:26:06,873", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638767.07399, - "msecs": 73.0, - "relativeCreated": 7337.129245, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:07,073", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638766.8734024, - "msecs": 873.0, - "relativeCreated": 7136.541354, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:06,873" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638766.8740802, - "msecs": 874.0, - "relativeCreated": 7137.219168, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:06,874" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638766.8756242, - "msecs": 875.0, - "relativeCreated": 7138.763195, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:06,875" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638767.073808, - "msecs": 73.0, - "relativeCreated": 7336.94695, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 40 ()", - "asctime": "2025-08-19 23:26:07,073" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638767.07394, - "msecs": 73.0, - "relativeCreated": 7337.078964, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:07,073" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638767.0740876, - "msecs": 74.0, - "relativeCreated": 7337.226629, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 60", - "asctime": "2025-08-19 23:26:07,074", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638767.274799, - "msecs": 274.0, - "relativeCreated": 7537.938155, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:07,274", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638767.0742178, - "msecs": 74.0, - "relativeCreated": 7337.356628, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:07,074" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.0749862, - "msecs": 74.0, - "relativeCreated": 7338.12526, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:07,074" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.0763695, - "msecs": 76.0, - "relativeCreated": 7339.508383, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:07,076" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638767.274626, - "msecs": 274.0, - "relativeCreated": 7537.765007, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 60 ()", - "asctime": "2025-08-19 23:26:07,274" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638767.274755, - "msecs": 274.0, - "relativeCreated": 7537.894095, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:07,274" - } - ], - "time_consumption": 4.410743713378906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638767.2749507, - "msecs": 274.0, - "relativeCreated": 7538.089572, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 80", - "asctime": "2025-08-19 23:26:07,274", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638767.4761124, - "msecs": 476.0, - "relativeCreated": 7739.251354, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:07,476", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638767.275094, - "msecs": 275.0, - "relativeCreated": 7538.233122, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:07,275" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.2757134, - "msecs": 275.0, - "relativeCreated": 7538.852467, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:07,275" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.2768092, - "msecs": 276.0, - "relativeCreated": 7539.948216, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:07,276" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638767.4758618, - "msecs": 475.0, - "relativeCreated": 7739.000643, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 80 ()", - "asctime": "2025-08-19 23:26:07,475" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638767.4760575, - "msecs": 476.0, - "relativeCreated": 7739.196596, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:07,476" - } - ], - "time_consumption": 5.4836273193359375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638767.4762244, - "msecs": 476.0, - "relativeCreated": 7739.363502, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 100", - "asctime": "2025-08-19 23:26:07,476", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638767.6772141, - "msecs": 677.0, - "relativeCreated": 7940.353132, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:07,677", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638767.4763844, - "msecs": 476.0, - "relativeCreated": 7739.523395, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:07,476" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.4773438, - "msecs": 477.0, - "relativeCreated": 7740.482768, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:07,477" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.4787824, - "msecs": 478.0, - "relativeCreated": 7741.92136, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:07,478" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638767.6770196, - "msecs": 677.0, - "relativeCreated": 7940.158632, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 100 ()", - "asctime": "2025-08-19 23:26:07,677" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638767.6771576, - "msecs": 677.0, - "relativeCreated": 7940.296549, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:07,677" - } - ], - "time_consumption": 5.650520324707031e-05 - } - ], - "time_consumption": 1.5070068836212158, - "time_start": "2025-08-19 23:26:06,170", - "time_finished": "2025-08-19 23:26:07,677" - }, - "REQ-0012": { - "name": "__tLogger__", - "msg": "REQ-0012", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638767.6774654, - "msecs": 677.0, - "relativeCreated": 7940.604344, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0012", - "asctime": "2025-08-19 23:26:07,677", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638767.777709, - "msecs": 777.0, - "relativeCreated": 8040.848179, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:07,777", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638767.8785615, - "msecs": 878.0, - "relativeCreated": 8141.700538, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:07,878", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638767.777987, - "msecs": 777.0, - "relativeCreated": 8041.126049, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:07,777" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638767.778304, - "msecs": 778.0, - "relativeCreated": 8041.442951, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:07,778" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.7799325, - "msecs": 779.0, - "relativeCreated": 8043.071357, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:07,779" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.7802255, - "msecs": 780.0, - "relativeCreated": 8043.364534, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:07,780" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.8210595, - "msecs": 821.0, - "relativeCreated": 8084.198562, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:07,821" - } - ], - "time_consumption": 0.057502031326293945 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638767.979047, - "msecs": 979.0, - "relativeCreated": 8242.186201, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:07,979", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638767.9788728, - "msecs": 978.0, - "relativeCreated": 8242.011771, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:07,978" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638767.9790032, - "msecs": 979.0, - "relativeCreated": 8242.142266, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:07,979" - } - ], - "time_consumption": 4.38690185546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638767.9791472, - "msecs": 979.0, - "relativeCreated": 8242.286342, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:07,979", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638768.180021, - "msecs": 180.0, - "relativeCreated": 8443.159928, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:08,180", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638767.9792616, - "msecs": 979.0, - "relativeCreated": 8242.400627, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 0", - "asctime": "2025-08-19 23:26:07,979" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.981309, - "msecs": 981.0, - "relativeCreated": 8244.447944, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:07,981" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638767.9815543, - "msecs": 981.0, - "relativeCreated": 8244.693159, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:07,981" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638767.9821165, - "msecs": 982.0, - "relativeCreated": 8245.255308, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:07,982" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.0232515, - "msecs": 23.0, - "relativeCreated": 8286.390415, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:08,023" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638768.1797433, - "msecs": 179.0, - "relativeCreated": 8442.882323, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:08,179" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638768.1799216, - "msecs": 179.0, - "relativeCreated": 8443.060675, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:08,179" - } - ], - "time_consumption": 9.942054748535156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638768.1801517, - "msecs": 180.0, - "relativeCreated": 8443.290929, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 2", - "asctime": "2025-08-19 23:26:08,180", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638768.3807771, - "msecs": 380.0, - "relativeCreated": 8643.916167, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:08,380", - "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", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.1802871, - "msecs": 180.0, - "relativeCreated": 8443.426349, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 2", - "asctime": "2025-08-19 23:26:08,180" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.1820457, - "msecs": 182.0, - "relativeCreated": 8445.184625, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:08,182" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.1822631, - "msecs": 182.0, - "relativeCreated": 8445.401945, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:08,182" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.1826985, - "msecs": 182.0, - "relativeCreated": 8445.837513, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:08,182" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.2232752, - "msecs": 223.0, - "relativeCreated": 8486.41435, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:08,223" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638768.3807049, - "msecs": 380.0, - "relativeCreated": 8643.843803, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 2 ()", - "asctime": "2025-08-19 23:26:08,380" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638768.3807604, - "msecs": 380.0, - "relativeCreated": 8643.899448, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:08,380" - } - ], - "time_consumption": 1.6689300537109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638768.3808239, - "msecs": 380.0, - "relativeCreated": 8643.962924, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 4", - "asctime": "2025-08-19 23:26:08,380", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638768.581416, - "msecs": 581.0, - "relativeCreated": 8844.554878, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:08,581", - "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", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.3808649, - "msecs": 380.0, - "relativeCreated": 8644.003702, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 4", - "asctime": "2025-08-19 23:26:08,380" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.3817432, - "msecs": 381.0, - "relativeCreated": 8644.882207, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:08,381" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.3819883, - "msecs": 381.0, - "relativeCreated": 8645.127466, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:08,381" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.3823, - "msecs": 382.0, - "relativeCreated": 8645.438946, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:08,382" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.4230583, - "msecs": 423.0, - "relativeCreated": 8686.197179, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:08,423" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638768.58122, - "msecs": 581.0, - "relativeCreated": 8844.358924, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 4 ()", - "asctime": "2025-08-19 23:26:08,581" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638768.5813472, - "msecs": 581.0, - "relativeCreated": 8844.48621, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:08,581" - } - ], - "time_consumption": 6.866455078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638768.5815232, - "msecs": 581.0, - "relativeCreated": 8844.662314, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 6", - "asctime": "2025-08-19 23:26:08,581", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638768.78234, - "msecs": 782.0, - "relativeCreated": 9045.479119, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:08,782", - "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", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.5816262, - "msecs": 581.0, - "relativeCreated": 8844.765009, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 6", - "asctime": "2025-08-19 23:26:08,581" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.5836687, - "msecs": 583.0, - "relativeCreated": 8846.807751, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:08,583" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.5839038, - "msecs": 583.0, - "relativeCreated": 8847.042864, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:08,583" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.584323, - "msecs": 584.0, - "relativeCreated": 8847.461717, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:08,584" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.6261356, - "msecs": 626.0, - "relativeCreated": 8889.274624, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:08,626" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638768.7821457, - "msecs": 782.0, - "relativeCreated": 9045.284677, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 6 ()", - "asctime": "2025-08-19 23:26:08,782" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638768.7822814, - "msecs": 782.0, - "relativeCreated": 9045.420573, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:08,782" - } - ], - "time_consumption": 5.8650970458984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638768.782442, - "msecs": 782.0, - "relativeCreated": 9045.580911, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 8", - "asctime": "2025-08-19 23:26:08,782", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638768.9829977, - "msecs": 982.0, - "relativeCreated": 9246.136772, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:08,982", - "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", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.782539, - "msecs": 782.0, - "relativeCreated": 9045.677888, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 8", - "asctime": "2025-08-19 23:26:08,782" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.7842536, - "msecs": 784.0, - "relativeCreated": 9047.392786, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:08,784" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.7844741, - "msecs": 784.0, - "relativeCreated": 9047.612994, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:08,784" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.7849512, - "msecs": 784.0, - "relativeCreated": 9048.090403, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:08,784" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.826039, - "msecs": 826.0, - "relativeCreated": 9089.177918, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:08,826" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638768.9829097, - "msecs": 982.0, - "relativeCreated": 9246.048686, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 8 ()", - "asctime": "2025-08-19 23:26:08,982" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638768.9829779, - "msecs": 982.0, - "relativeCreated": 9246.116854, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:08,982" - } - ], - "time_consumption": 1.9788742065429688e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638768.9830477, - "msecs": 983.0, - "relativeCreated": 9246.18667, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/main_light to 10", - "asctime": "2025-08-19 23:26:08,983", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638769.1836002, - "msecs": 183.0, - "relativeCreated": 9446.739214, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:09,183", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.9830954, - "msecs": 983.0, - "relativeCreated": 9246.234337, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:08,983" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.9839954, - "msecs": 983.0, - "relativeCreated": 9247.134318, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:08,983" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638768.9841232, - "msecs": 984.0, - "relativeCreated": 9247.262154, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:08,984" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638768.9842982, - "msecs": 984.0, - "relativeCreated": 9247.437305, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:08,984" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638769.025661, - "msecs": 25.0, - "relativeCreated": 9288.799921, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:09,025" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638769.1834137, - "msecs": 183.0, - "relativeCreated": 9446.552887, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/main_light): 10 ()", - "asctime": "2025-08-19 23:26:09,183" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638769.1835496, - "msecs": 183.0, - "relativeCreated": 9446.688608, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:09,183" - } - ], - "time_consumption": 5.054473876953125e-05 - } - ], - "time_consumption": 1.5061347484588623, - "time_start": "2025-08-19 23:26:07,677", - "time_finished": "2025-08-19 23:26:09,183" - }, - "REQ-0013": { - "name": "__tLogger__", - "msg": "REQ-0013", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638769.1838267, - "msecs": 183.0, - "relativeCreated": 9446.965764, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0013", - "asctime": "2025-08-19 23:26:09,183", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638769.284093, - "msecs": 284.0, - "relativeCreated": 9547.231922, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:09,284", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638769.38475, - "msecs": 384.0, - "relativeCreated": 9647.888746, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:09,384", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638769.284401, - "msecs": 284.0, - "relativeCreated": 9547.539847, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:09,284" - } - ], - "time_consumption": 0.10034894943237305 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638769.4852655, - "msecs": 485.0, - "relativeCreated": 9748.404498, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:09,485", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638769.4850876, - "msecs": 485.0, - "relativeCreated": 9748.226672, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:09,485" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638769.4852161, - "msecs": 485.0, - "relativeCreated": 9748.355203, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:09,485" - } - ], - "time_consumption": 4.935264587402344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638769.4853613, - "msecs": 485.0, - "relativeCreated": 9748.500518, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:09,485", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638769.6861374, - "msecs": 686.0, - "relativeCreated": 9949.276272, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:09,686", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638769.4855015, - "msecs": 485.0, - "relativeCreated": 9748.640391, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:09,485" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638769.4862566, - "msecs": 486.0, - "relativeCreated": 9749.395541, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:09,486" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638769.4873567, - "msecs": 487.0, - "relativeCreated": 9750.495776, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:09,487" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638769.6859577, - "msecs": 685.0, - "relativeCreated": 9949.096723, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:09,685" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638769.6860886, - "msecs": 686.0, - "relativeCreated": 9949.22748, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:09,686" - } - ], - "time_consumption": 4.887580871582031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638769.6862457, - "msecs": 686.0, - "relativeCreated": 9949.384592, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 2", - "asctime": "2025-08-19 23:26:09,686", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638769.8871849, - "msecs": 887.0, - "relativeCreated": 10150.323851, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:09,887", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638769.6863968, - "msecs": 686.0, - "relativeCreated": 9949.53596, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:09,686" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638769.6872866, - "msecs": 687.0, - "relativeCreated": 9950.425596, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:09,687" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638769.688525, - "msecs": 688.0, - "relativeCreated": 9951.664165, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:09,688" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638769.8869805, - "msecs": 886.0, - "relativeCreated": 10150.119521, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 2 ()", - "asctime": "2025-08-19 23:26:09,886" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638769.887133, - "msecs": 887.0, - "relativeCreated": 10150.27184, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:09,887" - } - ], - "time_consumption": 5.1975250244140625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638769.887293, - "msecs": 887.0, - "relativeCreated": 10150.4321, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 4", - "asctime": "2025-08-19 23:26:09,887", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638770.08835, - "msecs": 88.0, - "relativeCreated": 10351.488839, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:10,088", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638769.8874424, - "msecs": 887.0, - "relativeCreated": 10150.581434, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:09,887" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638769.8882291, - "msecs": 888.0, - "relativeCreated": 10151.368198, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:09,888" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638769.889485, - "msecs": 889.0, - "relativeCreated": 10152.623883, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:09,889" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638770.0881548, - "msecs": 88.0, - "relativeCreated": 10351.293843, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 4 ()", - "asctime": "2025-08-19 23:26:10,088" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638770.0882967, - "msecs": 88.0, - "relativeCreated": 10351.435747, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:10,088" - } - ], - "time_consumption": 5.340576171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638770.088485, - "msecs": 88.0, - "relativeCreated": 10351.624057, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 6", - "asctime": "2025-08-19 23:26:10,088", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638770.2893972, - "msecs": 289.0, - "relativeCreated": 10552.536239, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:10,289", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.0886462, - "msecs": 88.0, - "relativeCreated": 10351.785199, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:10,088" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.089492, - "msecs": 89.0, - "relativeCreated": 10352.630856, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:10,089" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.090987, - "msecs": 90.0, - "relativeCreated": 10354.126136, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:10,090" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638770.2892506, - "msecs": 289.0, - "relativeCreated": 10552.38959, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 6 ()", - "asctime": "2025-08-19 23:26:10,289" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638770.289361, - "msecs": 289.0, - "relativeCreated": 10552.500003, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:10,289" + "message": "Expectation (Value for Shelly.relay/0 (ffe.livingroom.main_light)): result = True ()", + "asctime": "2025-08-22 20:53:59,129" } ], "time_consumption": 3.62396240234375e-05 @@ -16953,15728 +2680,7 @@ "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638770.2894807, - "msecs": 289.0, - "relativeCreated": 10552.61962, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 8", - "asctime": "2025-08-19 23:26:10,289", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638770.4905195, - "msecs": 490.0, - "relativeCreated": 10753.658684, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:10,490", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.289617, - "msecs": 289.0, - "relativeCreated": 10552.756052, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:10,289" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.2903068, - "msecs": 290.0, - "relativeCreated": 10553.445838, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:10,290" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.2915711, - "msecs": 291.0, - "relativeCreated": 10554.710105, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:10,291" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638770.4903371, - "msecs": 490.0, - "relativeCreated": 10753.475984, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 8 ()", - "asctime": "2025-08-19 23:26:10,490" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638770.4904711, - "msecs": 490.0, - "relativeCreated": 10753.610125, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:10,490" - } - ], - "time_consumption": 4.839897155761719e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638770.4906473, - "msecs": 490.0, - "relativeCreated": 10753.786307, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/main_light to 10", - "asctime": "2025-08-19 23:26:10,490", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638770.691604, - "msecs": 691.0, - "relativeCreated": 10954.742952, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:10,691", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.490797, - "msecs": 490.0, - "relativeCreated": 10753.936026, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:10,490" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.491623, - "msecs": 491.0, - "relativeCreated": 10754.761998, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:10,491" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.4932754, - "msecs": 493.0, - "relativeCreated": 10756.414492, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:10,493" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638770.6914246, - "msecs": 691.0, - "relativeCreated": 10954.563456, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/main_light): 10 ()", - "asctime": "2025-08-19 23:26:10,691" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638770.6915536, - "msecs": 691.0, - "relativeCreated": 10954.692421, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:10,691" - } - ], - "time_consumption": 5.030632019042969e-05 - } - ], - "time_consumption": 1.507777214050293, - "time_start": "2025-08-19 23:26:09,183", - "time_finished": "2025-08-19 23:26:10,691" - }, - "REQ-0014": { - "name": "__tLogger__", - "msg": "REQ-0014", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638770.69196, - "msecs": 691.0, - "relativeCreated": 10955.098949, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0014", - "asctime": "2025-08-19 23:26:10,691", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638770.7923207, - "msecs": 792.0, - "relativeCreated": 11055.459676, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:10,792", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638770.8946228, - "msecs": 894.0, - "relativeCreated": 11157.761787, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:10,894", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.7926235, - "msecs": 792.0, - "relativeCreated": 11055.762559, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:10,792" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.792963, - "msecs": 792.0, - "relativeCreated": 11056.102026, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:10,792" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.7931955, - "msecs": 793.0, - "relativeCreated": 11056.33449, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:10,793" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.7933428, - "msecs": 793.0, - "relativeCreated": 11056.481712, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:10,793" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.7936852, - "msecs": 793.0, - "relativeCreated": 11056.82415, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:10,793" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.794052, - "msecs": 794.0, - "relativeCreated": 11057.190725, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:10,794" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.7942307, - "msecs": 794.0, - "relativeCreated": 11057.369739, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:10,794" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.7959585, - "msecs": 795.0, - "relativeCreated": 11059.097594, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:10,795" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.7964125, - "msecs": 796.0, - "relativeCreated": 11059.551301, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:10,796" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8383117, - "msecs": 838.0, - "relativeCreated": 11101.450777, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:10,838" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.838654, - "msecs": 838.0, - "relativeCreated": 11101.793083, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:10,838" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8388388, - "msecs": 838.0, - "relativeCreated": 11101.977668, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:10,838" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8390365, - "msecs": 839.0, - "relativeCreated": 11102.175435, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:10,839" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8391907, - "msecs": 839.0, - "relativeCreated": 11102.329772, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:10,839" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8393433, - "msecs": 839.0, - "relativeCreated": 11102.482343, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:10,839" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8395088, - "msecs": 839.0, - "relativeCreated": 11102.647801, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:10,839" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8397095, - "msecs": 839.0, - "relativeCreated": 11102.848544, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:10,839" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8398688, - "msecs": 839.0, - "relativeCreated": 11103.007619, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:10,839" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.8400464, - "msecs": 840.0, - "relativeCreated": 11103.185379, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:10,840" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.840201, - "msecs": 840.0, - "relativeCreated": 11103.339874, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:10,840" - } - ], - "time_consumption": 0.05442190170288086 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638770.995469, - "msecs": 995.0, - "relativeCreated": 11258.608088, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:10,995", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638770.9952314, - "msecs": 995.0, - "relativeCreated": 11258.370469, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:10,995" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638770.995386, - "msecs": 995.0, - "relativeCreated": 11258.524963, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:10,995" - } - ], - "time_consumption": 8.320808410644531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638770.995595, - "msecs": 995.0, - "relativeCreated": 11258.733924, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 0", - "asctime": "2025-08-19 23:26:10,995", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638771.1966538, - "msecs": 196.0, - "relativeCreated": 11459.792793, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:11,196", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638770.995713, - "msecs": 995.0, - "relativeCreated": 11258.85206, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 0", - "asctime": "2025-08-19 23:26:10,995" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638770.9997146, - "msecs": 999.0, - "relativeCreated": 11262.853686, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:10,999" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.0000222, - "msecs": 0.0, - "relativeCreated": 11263.161291, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,000" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0003486, - "msecs": 0.0, - "relativeCreated": 11263.487696, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:11,000" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.0005212, - "msecs": 0.0, - "relativeCreated": 11263.66015, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,000" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0008495, - "msecs": 0.0, - "relativeCreated": 11263.988463, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:11,000" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.0010288, - "msecs": 1.0, - "relativeCreated": 11264.167954, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,001" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0012732, - "msecs": 1.0, - "relativeCreated": 11264.412123, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:11,001" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.0014129, - "msecs": 1.0, - "relativeCreated": 11264.551749, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,001" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0016668, - "msecs": 1.0, - "relativeCreated": 11264.805907, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:11,001" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.0018115, - "msecs": 1.0, - "relativeCreated": 11264.950463, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,001" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.002062, - "msecs": 2.0, - "relativeCreated": 11265.2012, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:11,002" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.0022001, - "msecs": 2.0, - "relativeCreated": 11265.33896, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,002" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.002457, - "msecs": 2.0, - "relativeCreated": 11265.595744, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,002" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0026727, - "msecs": 2.0, - "relativeCreated": 11265.811564, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,002" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0028696, - "msecs": 2.0, - "relativeCreated": 11266.008547, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,002" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0030856, - "msecs": 3.0, - "relativeCreated": 11266.224529, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,003" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0032783, - "msecs": 3.0, - "relativeCreated": 11266.417317, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,003" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0034833, - "msecs": 3.0, - "relativeCreated": 11266.62228, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,003" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.0441782, - "msecs": 44.0, - "relativeCreated": 11307.317065, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:11,044" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638771.1964836, - "msecs": 196.0, - "relativeCreated": 11459.622538, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 0 ()", - "asctime": "2025-08-19 23:26:11,196" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638771.196606, - "msecs": 196.0, - "relativeCreated": 11459.744886, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 0 ()", - "asctime": "2025-08-19 23:26:11,196" - } - ], - "time_consumption": 4.792213439941406e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638771.196773, - "msecs": 196.0, - "relativeCreated": 11459.912158, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 20", - "asctime": "2025-08-19 23:26:11,196", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638771.3978844, - "msecs": 397.0, - "relativeCreated": 11661.023521, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:11,397", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.1968753, - "msecs": 196.0, - "relativeCreated": 11460.014212, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 20", - "asctime": "2025-08-19 23:26:11,196" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2000747, - "msecs": 200.0, - "relativeCreated": 11463.213791, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:11,200" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.2003248, - "msecs": 200.0, - "relativeCreated": 11463.463845, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,200" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2006145, - "msecs": 200.0, - "relativeCreated": 11463.75345, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:11,200" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.2007709, - "msecs": 200.0, - "relativeCreated": 11463.909779, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,200" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2010913, - "msecs": 201.0, - "relativeCreated": 11464.230343, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:11,201" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.2012367, - "msecs": 201.0, - "relativeCreated": 11464.375767, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,201" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2014573, - "msecs": 201.0, - "relativeCreated": 11464.596164, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:11,201" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.201585, - "msecs": 201.0, - "relativeCreated": 11464.724115, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,201" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2018259, - "msecs": 201.0, - "relativeCreated": 11464.964852, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:11,201" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.2019944, - "msecs": 201.0, - "relativeCreated": 11465.133617, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,201" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2022045, - "msecs": 202.0, - "relativeCreated": 11465.343491, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:11,202" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.2023406, - "msecs": 202.0, - "relativeCreated": 11465.479685, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,202" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2025778, - "msecs": 202.0, - "relativeCreated": 11465.716883, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,202" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.202782, - "msecs": 202.0, - "relativeCreated": 11465.920989, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,202" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2029889, - "msecs": 202.0, - "relativeCreated": 11466.127784, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,202" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2037423, - "msecs": 203.0, - "relativeCreated": 11466.881154, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,203" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2039752, - "msecs": 203.0, - "relativeCreated": 11467.114208, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,203" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2041643, - "msecs": 204.0, - "relativeCreated": 11467.303358, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,204" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.2443216, - "msecs": 244.0, - "relativeCreated": 11507.460623, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:11,244" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638771.3976943, - "msecs": 397.0, - "relativeCreated": 11660.833518, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 20 ()", - "asctime": "2025-08-19 23:26:11,397" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638771.3978322, - "msecs": 397.0, - "relativeCreated": 11660.971179, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 20 ()", - "asctime": "2025-08-19 23:26:11,397" - } - ], - "time_consumption": 5.221366882324219e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638771.3980362, - "msecs": 398.0, - "relativeCreated": 11661.175214, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 40", - "asctime": "2025-08-19 23:26:11,398", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638771.599143, - "msecs": 599.0, - "relativeCreated": 11862.2818, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:11,599", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.3982034, - "msecs": 398.0, - "relativeCreated": 11661.342396, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 40", - "asctime": "2025-08-19 23:26:11,398" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4017143, - "msecs": 401.0, - "relativeCreated": 11664.853452, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:11,401" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.4019876, - "msecs": 401.0, - "relativeCreated": 11665.126518, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,401" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4022994, - "msecs": 402.0, - "relativeCreated": 11665.438365, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:11,402" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.402462, - "msecs": 402.0, - "relativeCreated": 11665.600974, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,402" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4027724, - "msecs": 402.0, - "relativeCreated": 11665.911398, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:11,402" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.4029477, - "msecs": 402.0, - "relativeCreated": 11666.08653, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,402" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4031734, - "msecs": 403.0, - "relativeCreated": 11666.312377, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:11,403" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.4033144, - "msecs": 403.0, - "relativeCreated": 11666.453403, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,403" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.403582, - "msecs": 403.0, - "relativeCreated": 11666.721251, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:11,403" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.403737, - "msecs": 403.0, - "relativeCreated": 11666.876038, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,403" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.404009, - "msecs": 404.0, - "relativeCreated": 11667.148245, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:11,404" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.4041526, - "msecs": 404.0, - "relativeCreated": 11667.291539, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,404" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4044027, - "msecs": 404.0, - "relativeCreated": 11667.541674, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,404" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.404649, - "msecs": 404.0, - "relativeCreated": 11667.788008, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,404" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4048593, - "msecs": 404.0, - "relativeCreated": 11667.998323, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,404" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4050725, - "msecs": 405.0, - "relativeCreated": 11668.211359, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,405" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.40527, - "msecs": 405.0, - "relativeCreated": 11668.409032, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,405" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4054635, - "msecs": 405.0, - "relativeCreated": 11668.60253, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,405" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.4462256, - "msecs": 446.0, - "relativeCreated": 11709.364733, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:11,446" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638771.598967, - "msecs": 598.0, - "relativeCreated": 11862.105973, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 40 ()", - "asctime": "2025-08-19 23:26:11,598" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638771.5990949, - "msecs": 599.0, - "relativeCreated": 11862.233873, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 40 ()", - "asctime": "2025-08-19 23:26:11,599" - } - ], - "time_consumption": 4.8160552978515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638771.599257, - "msecs": 599.0, - "relativeCreated": 11862.396194, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 60", - "asctime": "2025-08-19 23:26:11,599", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638771.8003569, - "msecs": 800.0, - "relativeCreated": 12063.495857, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:11,800", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.5993583, - "msecs": 599.0, - "relativeCreated": 11862.497168, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 60", - "asctime": "2025-08-19 23:26:11,599" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.602916, - "msecs": 602.0, - "relativeCreated": 11866.055065, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:11,602" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.603149, - "msecs": 603.0, - "relativeCreated": 11866.287963, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,603" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6034226, - "msecs": 603.0, - "relativeCreated": 11866.561768, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:11,603" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.6035666, - "msecs": 603.0, - "relativeCreated": 11866.705469, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,603" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6038454, - "msecs": 603.0, - "relativeCreated": 11866.984423, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:11,603" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.604011, - "msecs": 604.0, - "relativeCreated": 11867.149974, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,604" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.604261, - "msecs": 604.0, - "relativeCreated": 11867.399947, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:11,604" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.6043906, - "msecs": 604.0, - "relativeCreated": 11867.529594, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,604" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6046157, - "msecs": 604.0, - "relativeCreated": 11867.75461, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:11,604" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.604741, - "msecs": 604.0, - "relativeCreated": 11867.880221, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,604" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6049905, - "msecs": 604.0, - "relativeCreated": 11868.129539, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:11,604" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.6051247, - "msecs": 605.0, - "relativeCreated": 11868.263501, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,605" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6053689, - "msecs": 605.0, - "relativeCreated": 11868.507755, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,605" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.605587, - "msecs": 605.0, - "relativeCreated": 11868.725921, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,605" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6057723, - "msecs": 605.0, - "relativeCreated": 11868.91133, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,605" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6059668, - "msecs": 605.0, - "relativeCreated": 11869.10577, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,605" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.606149, - "msecs": 606.0, - "relativeCreated": 11869.287935, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,606" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.6063309, - "msecs": 606.0, - "relativeCreated": 11869.469839, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,606" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.647114, - "msecs": 647.0, - "relativeCreated": 11910.252962, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:11,647" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638771.8001664, - "msecs": 800.0, - "relativeCreated": 12063.305427, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 60 ()", - "asctime": "2025-08-19 23:26:11,800" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638771.8003044, - "msecs": 800.0, - "relativeCreated": 12063.443293, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 60 ()", - "asctime": "2025-08-19 23:26:11,800" - } - ], - "time_consumption": 5.245208740234375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638771.8004782, - "msecs": 800.0, - "relativeCreated": 12063.61709, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 80", - "asctime": "2025-08-19 23:26:11,800", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638772.0015543, - "msecs": 1.0, - "relativeCreated": 12264.693268, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:12,001", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.8005872, - "msecs": 800.0, - "relativeCreated": 12063.726186, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 80", - "asctime": "2025-08-19 23:26:11,800" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8042898, - "msecs": 804.0, - "relativeCreated": 12067.428817, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:11,804" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.8045597, - "msecs": 804.0, - "relativeCreated": 12067.698494, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,804" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.804855, - "msecs": 804.0, - "relativeCreated": 12067.993948, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:11,804" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.8050416, - "msecs": 805.0, - "relativeCreated": 12068.180773, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,805" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8053515, - "msecs": 805.0, - "relativeCreated": 12068.490504, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:11,805" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.8055086, - "msecs": 805.0, - "relativeCreated": 12068.64753, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,805" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.80577, - "msecs": 805.0, - "relativeCreated": 12068.908891, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:11,805" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.8059323, - "msecs": 805.0, - "relativeCreated": 12069.071312, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,805" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8061957, - "msecs": 806.0, - "relativeCreated": 12069.334827, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:11,806" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.8063376, - "msecs": 806.0, - "relativeCreated": 12069.476581, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,806" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.806581, - "msecs": 806.0, - "relativeCreated": 12069.719902, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:11,806" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638771.8067193, - "msecs": 806.0, - "relativeCreated": 12069.858119, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:11,806" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8069677, - "msecs": 806.0, - "relativeCreated": 12070.106773, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,806" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8072033, - "msecs": 807.0, - "relativeCreated": 12070.342347, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,807" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.807415, - "msecs": 807.0, - "relativeCreated": 12070.554151, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,807" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8076134, - "msecs": 807.0, - "relativeCreated": 12070.752372, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,807" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8078074, - "msecs": 807.0, - "relativeCreated": 12070.946544, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,807" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8080182, - "msecs": 808.0, - "relativeCreated": 12071.157214, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:11,808" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638771.8481762, - "msecs": 848.0, - "relativeCreated": 12111.315232, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:11,848" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638772.0013602, - "msecs": 1.0, - "relativeCreated": 12264.499143, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 80 ()", - "asctime": "2025-08-19 23:26:12,001" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638772.0015008, - "msecs": 1.0, - "relativeCreated": 12264.639849, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 80 ()", - "asctime": "2025-08-19 23:26:12,001" - } - ], - "time_consumption": 5.340576171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638772.0016797, - "msecs": 1.0, - "relativeCreated": 12264.818523, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 100", - "asctime": "2025-08-19 23:26:12,001", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638772.2027833, - "msecs": 202.0, - "relativeCreated": 12465.922111, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:12,202", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.0018132, - "msecs": 1.0, - "relativeCreated": 12264.952282, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:12,001" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.005331, - "msecs": 5.0, - "relativeCreated": 12268.469912, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:12,005" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.0056503, - "msecs": 5.0, - "relativeCreated": 12268.78929, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,005" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.0059528, - "msecs": 5.0, - "relativeCreated": 12269.091814, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:12,005" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.0061145, - "msecs": 6.0, - "relativeCreated": 12269.253464, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,006" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.0064132, - "msecs": 6.0, - "relativeCreated": 12269.552349, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:12,006" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.0065627, - "msecs": 6.0, - "relativeCreated": 12269.701782, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,006" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.0068207, - "msecs": 6.0, - "relativeCreated": 12269.959561, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:12,006" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.0069938, - "msecs": 6.0, - "relativeCreated": 12270.132698, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,006" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.007246, - "msecs": 7.0, - "relativeCreated": 12270.384976, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:12,007" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.0073867, - "msecs": 7.0, - "relativeCreated": 12270.525501, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,007" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.007631, - "msecs": 7.0, - "relativeCreated": 12270.770095, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:12,007" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.0077689, - "msecs": 7.0, - "relativeCreated": 12270.907713, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,007" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.008024, - "msecs": 8.0, - "relativeCreated": 12271.163043, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,008" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.0082617, - "msecs": 8.0, - "relativeCreated": 12271.400594, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,008" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.008475, - "msecs": 8.0, - "relativeCreated": 12271.614114, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,008" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.0086887, - "msecs": 8.0, - "relativeCreated": 12271.827605, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,008" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.008887, - "msecs": 8.0, - "relativeCreated": 12272.026068, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,008" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.0090845, - "msecs": 9.0, - "relativeCreated": 12272.223546, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,009" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.0492065, - "msecs": 49.0, - "relativeCreated": 12312.345578, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:12,049" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638772.20259, - "msecs": 202.0, - "relativeCreated": 12465.729017, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 100 ()", - "asctime": "2025-08-19 23:26:12,202" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638772.2027314, - "msecs": 202.0, - "relativeCreated": 12465.870147, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 100 ()", - "asctime": "2025-08-19 23:26:12,202" - } - ], - "time_consumption": 5.1975250244140625e-05 - } - ], - "time_consumption": 1.5108232498168945, - "time_start": "2025-08-19 23:26:10,691", - "time_finished": "2025-08-19 23:26:12,202" - }, - "REQ-0015": { - "name": "__tLogger__", - "msg": "REQ-0015", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638772.2030954, - "msecs": 203.0, - "relativeCreated": 12466.234663, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0015", - "asctime": "2025-08-19 23:26:12,203", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638772.3034484, - "msecs": 303.0, - "relativeCreated": 12566.58745, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:12,303", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638772.4043083, - "msecs": 404.0, - "relativeCreated": 12667.447253, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:12,404", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.303762, - "msecs": 303.0, - "relativeCreated": 12566.901033, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:12,303" - } - ], - "time_consumption": 0.10054636001586914 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638772.5051622, - "msecs": 505.0, - "relativeCreated": 12768.301209, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:12,505", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638772.504936, - "msecs": 504.0, - "relativeCreated": 12768.075028, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:12,504" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638772.5051062, - "msecs": 505.0, - "relativeCreated": 12768.245142, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:12,505" - } - ], - "time_consumption": 5.602836608886719e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638772.5053184, - "msecs": 505.0, - "relativeCreated": 12768.457308, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 0", - "asctime": "2025-08-19 23:26:12,505", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638772.707204, - "msecs": 707.0, - "relativeCreated": 12970.343217, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:12,707", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.505498, - "msecs": 505.0, - "relativeCreated": 12768.636865, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,505" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.5057623, - "msecs": 505.0, - "relativeCreated": 12768.901425, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,505" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.5059128, - "msecs": 505.0, - "relativeCreated": 12769.051875, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,505" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.506038, - "msecs": 506.0, - "relativeCreated": 12769.177079, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,506" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.5061548, - "msecs": 506.0, - "relativeCreated": 12769.293745, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,506" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.5062761, - "msecs": 506.0, - "relativeCreated": 12769.415073, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,506" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.5070324, - "msecs": 507.0, - "relativeCreated": 12770.171237, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,507" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.5074852, - "msecs": 507.0, - "relativeCreated": 12770.624155, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,507" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.5078633, - "msecs": 507.0, - "relativeCreated": 12771.002315, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,507" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.5082736, - "msecs": 508.0, - "relativeCreated": 12771.412655, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,508" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.5086575, - "msecs": 508.0, - "relativeCreated": 12771.79648, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,508" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.5090437, - "msecs": 509.0, - "relativeCreated": 12772.182657, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,509" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.5094233, - "msecs": 509.0, - "relativeCreated": 12772.56235, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:12,509" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638772.7070048, - "msecs": 707.0, - "relativeCreated": 12970.143713, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 0 ()", - "asctime": "2025-08-19 23:26:12,707" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638772.707152, - "msecs": 707.0, - "relativeCreated": 12970.290894, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 0 ()", - "asctime": "2025-08-19 23:26:12,707" - } - ], - "time_consumption": 5.221366882324219e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638772.7073655, - "msecs": 707.0, - "relativeCreated": 12970.504752, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 20", - "asctime": "2025-08-19 23:26:12,707", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638772.91058, - "msecs": 910.0, - "relativeCreated": 13173.719057, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:12,910", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.7075732, - "msecs": 707.0, - "relativeCreated": 12970.712328, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.707838, - "msecs": 707.0, - "relativeCreated": 12970.977076, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,707" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.7081404, - "msecs": 708.0, - "relativeCreated": 12971.279254, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.708363, - "msecs": 708.0, - "relativeCreated": 12971.501931, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.7088234, - "msecs": 708.0, - "relativeCreated": 12971.962437, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,708" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.709133, - "msecs": 709.0, - "relativeCreated": 12972.271915, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,709" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.7094655, - "msecs": 709.0, - "relativeCreated": 12972.604717, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,709" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.709661, - "msecs": 709.0, - "relativeCreated": 12972.799986, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,709" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.7100267, - "msecs": 710.0, - "relativeCreated": 12973.165812, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,710" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.7102473, - "msecs": 710.0, - "relativeCreated": 12973.386251, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,710" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.7104561, - "msecs": 710.0, - "relativeCreated": 12973.595043, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:12,710" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.7106836, - "msecs": 710.0, - "relativeCreated": 12973.822528, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,710" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.7521436, - "msecs": 752.0, - "relativeCreated": 13015.28257, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,752" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638772.9103827, - "msecs": 910.0, - "relativeCreated": 13173.521732, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 20 ()", - "asctime": "2025-08-19 23:26:12,910" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638772.910527, - "msecs": 910.0, - "relativeCreated": 13173.666046, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 20 ()", - "asctime": "2025-08-19 23:26:12,910" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638772.9107416, - "msecs": 910.0, - "relativeCreated": 13173.880406, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 40", - "asctime": "2025-08-19 23:26:12,910", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638773.1135821, - "msecs": 113.0, - "relativeCreated": 13376.72112, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:13,113", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.9109771, - "msecs": 910.0, - "relativeCreated": 13174.116083, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,910" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.911241, - "msecs": 911.0, - "relativeCreated": 13174.379847, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,911" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.9113803, - "msecs": 911.0, - "relativeCreated": 13174.519288, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,911" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.9115918, - "msecs": 911.0, - "relativeCreated": 13174.730642, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,911" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.911957, - "msecs": 911.0, - "relativeCreated": 13175.09588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,911" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638772.91215, - "msecs": 912.0, - "relativeCreated": 13175.28909, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:12,912" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.9124196, - "msecs": 912.0, - "relativeCreated": 13175.558714, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,912" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.9129262, - "msecs": 912.0, - "relativeCreated": 13176.065262, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,912" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.9136558, - "msecs": 913.0, - "relativeCreated": 13176.794846, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,913" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.9140112, - "msecs": 914.0, - "relativeCreated": 13177.150116, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,914" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.914252, - "msecs": 914.0, - "relativeCreated": 13177.391086, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,914" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.9544723, - "msecs": 954.0, - "relativeCreated": 13217.611214, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:12,954" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638772.9548287, - "msecs": 954.0, - "relativeCreated": 13217.967907, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:12,954" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638773.1133525, - "msecs": 113.0, - "relativeCreated": 13376.491517, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 40 ()", - "asctime": "2025-08-19 23:26:13,113" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638773.1135058, - "msecs": 113.0, - "relativeCreated": 13376.644737, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 40 ()", - "asctime": "2025-08-19 23:26:13,113" - } - ], - "time_consumption": 7.62939453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638773.1137404, - "msecs": 113.0, - "relativeCreated": 13376.879458, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 60", - "asctime": "2025-08-19 23:26:13,113", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638773.3157089, - "msecs": 315.0, - "relativeCreated": 13578.847923, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:13,315", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.1139424, - "msecs": 113.0, - "relativeCreated": 13377.081364, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,113" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.1142142, - "msecs": 114.0, - "relativeCreated": 13377.353049, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,114" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.1144252, - "msecs": 114.0, - "relativeCreated": 13377.56408, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,114" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.1146166, - "msecs": 114.0, - "relativeCreated": 13377.755653, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,114" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.1147926, - "msecs": 114.0, - "relativeCreated": 13377.931597, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,114" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.1150453, - "msecs": 115.0, - "relativeCreated": 13378.184276, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,115" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.1154895, - "msecs": 115.0, - "relativeCreated": 13378.628552, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,115" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.115818, - "msecs": 115.0, - "relativeCreated": 13378.956954, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,115" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.1160944, - "msecs": 116.0, - "relativeCreated": 13379.233558, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,116" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.1163192, - "msecs": 116.0, - "relativeCreated": 13379.458233, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,116" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.1565356, - "msecs": 156.0, - "relativeCreated": 13419.674496, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,156" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.1568615, - "msecs": 156.0, - "relativeCreated": 13420.000323, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.1571395, - "msecs": 157.0, - "relativeCreated": 13420.278398, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:13,157" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638773.3155096, - "msecs": 315.0, - "relativeCreated": 13578.648508, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 60 ()", - "asctime": "2025-08-19 23:26:13,315" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638773.315657, - "msecs": 315.0, - "relativeCreated": 13578.795954, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 60 ()", - "asctime": "2025-08-19 23:26:13,315" - } - ], - "time_consumption": 5.1975250244140625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638773.3158739, - "msecs": 315.0, - "relativeCreated": 13579.012684, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 80", - "asctime": "2025-08-19 23:26:13,315", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638773.519107, - "msecs": 519.0, - "relativeCreated": 13782.246118, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:13,519", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.3160782, - "msecs": 316.0, - "relativeCreated": 13579.217141, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,316" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.3163362, - "msecs": 316.0, - "relativeCreated": 13579.475252, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,316" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.3165345, - "msecs": 316.0, - "relativeCreated": 13579.673414, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,316" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.3167071, - "msecs": 316.0, - "relativeCreated": 13579.846055, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,316" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.317152, - "msecs": 317.0, - "relativeCreated": 13580.291022, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,317" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.3174667, - "msecs": 317.0, - "relativeCreated": 13580.605507, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,317" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.3179414, - "msecs": 317.0, - "relativeCreated": 13581.080444, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,317" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.3181708, - "msecs": 318.0, - "relativeCreated": 13581.309793, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,318" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.318818, - "msecs": 318.0, - "relativeCreated": 13581.957148, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,318" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.319219, - "msecs": 319.0, - "relativeCreated": 13582.35814, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,319" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.3195891, - "msecs": 319.0, - "relativeCreated": 13582.728091, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,319" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.3595626, - "msecs": 359.0, - "relativeCreated": 13622.70169, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,359" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.3600056, - "msecs": 360.0, - "relativeCreated": 13623.144734, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:13,360" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638773.5190012, - "msecs": 519.0, - "relativeCreated": 13782.140462, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 80 ()", - "asctime": "2025-08-19 23:26:13,519" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638773.5190823, - "msecs": 519.0, - "relativeCreated": 13782.221291, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 80 ()", - "asctime": "2025-08-19 23:26:13,519" - } - ], - "time_consumption": 2.47955322265625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638773.5191982, - "msecs": 519.0, - "relativeCreated": 13782.337333, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 100", - "asctime": "2025-08-19 23:26:13,519", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638773.720635, - "msecs": 720.0, - "relativeCreated": 13983.773856, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:13,720", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.519303, - "msecs": 519.0, - "relativeCreated": 13782.442256, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,519" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.5194418, - "msecs": 519.0, - "relativeCreated": 13782.580814, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,519" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.5195415, - "msecs": 519.0, - "relativeCreated": 13782.680578, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,519" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.5196848, - "msecs": 519.0, - "relativeCreated": 13782.823905, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,519" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.5197763, - "msecs": 519.0, - "relativeCreated": 13782.915162, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,519" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.519863, - "msecs": 519.0, - "relativeCreated": 13783.001894, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:13,519" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.5200305, - "msecs": 520.0, - "relativeCreated": 13783.169509, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,520" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.5202417, - "msecs": 520.0, - "relativeCreated": 13783.380676, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,520" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.5203657, - "msecs": 520.0, - "relativeCreated": 13783.504932, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,520" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.5204742, - "msecs": 520.0, - "relativeCreated": 13783.613217, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,520" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.5614614, - "msecs": 561.0, - "relativeCreated": 13824.600455, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,561" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.5617776, - "msecs": 561.0, - "relativeCreated": 13824.916723, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:13,561" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.5620174, - "msecs": 562.0, - "relativeCreated": 13825.156525, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:13,562" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638773.7204585, - "msecs": 720.0, - "relativeCreated": 13983.597538, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 100 ()", - "asctime": "2025-08-19 23:26:13,720" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638773.7205832, - "msecs": 720.0, - "relativeCreated": 13983.722297, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 100 ()", - "asctime": "2025-08-19 23:26:13,720" - } - ], - "time_consumption": 5.173683166503906e-05 - } - ], - "time_consumption": 1.5175395011901855, - "time_start": "2025-08-19 23:26:12,203", - "time_finished": "2025-08-19 23:26:13,720" - }, - "REQ-0016": { - "name": "__tLogger__", - "msg": "REQ-0016", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638773.720973, - "msecs": 720.0, - "relativeCreated": 13984.112171, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0016", - "asctime": "2025-08-19 23:26:13,720", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638773.8213916, - "msecs": 821.0, - "relativeCreated": 14084.530543, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:13,821", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638773.92321, - "msecs": 923.0, - "relativeCreated": 14186.349063, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:13,923", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.8216796, - "msecs": 821.0, - "relativeCreated": 14084.818516, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:13,821" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.8220596, - "msecs": 822.0, - "relativeCreated": 14085.198606, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:13,822" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.8222482, - "msecs": 822.0, - "relativeCreated": 14085.387131, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:13,822" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.8223774, - "msecs": 822.0, - "relativeCreated": 14085.516514, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:13,822" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.8225348, - "msecs": 822.0, - "relativeCreated": 14085.673877, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:13,822" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.8227024, - "msecs": 822.0, - "relativeCreated": 14085.841463, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:13,822" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638773.822956, - "msecs": 822.0, - "relativeCreated": 14086.09511, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:13,822" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8257055, - "msecs": 825.0, - "relativeCreated": 14088.844411, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:13,825" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8260708, - "msecs": 826.0, - "relativeCreated": 14089.209765, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:13,826" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8661928, - "msecs": 866.0, - "relativeCreated": 14129.331986, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:13,866" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8664455, - "msecs": 866.0, - "relativeCreated": 14129.58468, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:13,866" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8666217, - "msecs": 866.0, - "relativeCreated": 14129.760694, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:13,866" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8667748, - "msecs": 866.0, - "relativeCreated": 14129.91369, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:13,866" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8669372, - "msecs": 866.0, - "relativeCreated": 14130.076047, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:13,866" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8670905, - "msecs": 867.0, - "relativeCreated": 14130.229342, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:13,867" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8672462, - "msecs": 867.0, - "relativeCreated": 14130.385081, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:13,867" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8674185, - "msecs": 867.0, - "relativeCreated": 14130.557581, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:13,867" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.867608, - "msecs": 867.0, - "relativeCreated": 14130.747195, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:13,867" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8677537, - "msecs": 867.0, - "relativeCreated": 14130.892785, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:13,867" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638773.8679101, - "msecs": 867.0, - "relativeCreated": 14131.049126, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:13,867" - } - ], - "time_consumption": 0.05529975891113281 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638774.023876, - "msecs": 23.0, - "relativeCreated": 14287.014895, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:14,023", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638774.0236938, - "msecs": 23.0, - "relativeCreated": 14286.832817, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:14,023" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638774.0238197, - "msecs": 23.0, - "relativeCreated": 14286.958703, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:14,023" - } - ], - "time_consumption": 5.626678466796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638774.0239968, - "msecs": 23.0, - "relativeCreated": 14287.13591, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 0", - "asctime": "2025-08-19 23:26:14,023", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638774.2250357, - "msecs": 225.0, - "relativeCreated": 14488.174718, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:14,225", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.0240958, - "msecs": 24.0, - "relativeCreated": 14287.234723, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 0", - "asctime": "2025-08-19 23:26:14,024" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0276523, - "msecs": 27.0, - "relativeCreated": 14290.791441, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:14,027" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.0279408, - "msecs": 27.0, - "relativeCreated": 14291.079839, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:14,027" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0282521, - "msecs": 28.0, - "relativeCreated": 14291.391229, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:14,028" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.028474, - "msecs": 28.0, - "relativeCreated": 14291.613207, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:14,028" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0288794, - "msecs": 28.0, - "relativeCreated": 14292.018291, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:14,028" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.0290682, - "msecs": 29.0, - "relativeCreated": 14292.207243, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:14,029" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.029299, - "msecs": 29.0, - "relativeCreated": 14292.438019, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:14,029" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.0294414, - "msecs": 29.0, - "relativeCreated": 14292.580362, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:14,029" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0297093, - "msecs": 29.0, - "relativeCreated": 14292.848288, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:14,029" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.0298564, - "msecs": 29.0, - "relativeCreated": 14292.995454, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:14,029" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0300891, - "msecs": 30.0, - "relativeCreated": 14293.228195, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:14,030" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.03024, - "msecs": 30.0, - "relativeCreated": 14293.37905, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:14,030" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0305545, - "msecs": 30.0, - "relativeCreated": 14293.693593, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:14,030" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.030787, - "msecs": 30.0, - "relativeCreated": 14293.925973, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:14,030" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0310032, - "msecs": 31.0, - "relativeCreated": 14294.142059, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:14,031" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0311902, - "msecs": 31.0, - "relativeCreated": 14294.329344, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:14,031" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.031383, - "msecs": 31.0, - "relativeCreated": 14294.521934, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:14,031" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0315702, - "msecs": 31.0, - "relativeCreated": 14294.709252, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:14,031" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.0711215, - "msecs": 71.0, - "relativeCreated": 14334.260287, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:14,071" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638774.2247941, - "msecs": 224.0, - "relativeCreated": 14487.933171, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 0 ()", - "asctime": "2025-08-19 23:26:14,224" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638774.224967, - "msecs": 224.0, - "relativeCreated": 14488.105908, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 0 ()", - "asctime": "2025-08-19 23:26:14,224" - } - ], - "time_consumption": 6.866455078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638774.2252154, - "msecs": 225.0, - "relativeCreated": 14488.354384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 2", - "asctime": "2025-08-19 23:26:14,225", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638774.4265134, - "msecs": 426.0, - "relativeCreated": 14689.652529, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:14,426", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.2253861, - "msecs": 225.0, - "relativeCreated": 14488.525241, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 2", - "asctime": "2025-08-19 23:26:14,225" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2291038, - "msecs": 229.0, - "relativeCreated": 14492.242773, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.2292347, - "msecs": 229.0, - "relativeCreated": 14492.373796, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2293644, - "msecs": 229.0, - "relativeCreated": 14492.503368, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.2294211, - "msecs": 229.0, - "relativeCreated": 14492.559983, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.229545, - "msecs": 229.0, - "relativeCreated": 14492.684111, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.229625, - "msecs": 229.0, - "relativeCreated": 14492.764195, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.229716, - "msecs": 229.0, - "relativeCreated": 14492.854999, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.2297707, - "msecs": 229.0, - "relativeCreated": 14492.909699, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2298775, - "msecs": 229.0, - "relativeCreated": 14493.016583, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.2299647, - "msecs": 229.0, - "relativeCreated": 14493.103697, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:14,229" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2300637, - "msecs": 230.0, - "relativeCreated": 14493.20267, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.2301192, - "msecs": 230.0, - "relativeCreated": 14493.258229, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2302463, - "msecs": 230.0, - "relativeCreated": 14493.3855, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2303643, - "msecs": 230.0, - "relativeCreated": 14493.503532, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.230461, - "msecs": 230.0, - "relativeCreated": 14493.600011, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2305365, - "msecs": 230.0, - "relativeCreated": 14493.675365, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2306018, - "msecs": 230.0, - "relativeCreated": 14493.740818, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.230665, - "msecs": 230.0, - "relativeCreated": 14493.803947, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:14,230" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.2724814, - "msecs": 272.0, - "relativeCreated": 14535.620574, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:14,272" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638774.4263105, - "msecs": 426.0, - "relativeCreated": 14689.449686, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 2 ()", - "asctime": "2025-08-19 23:26:14,426" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638774.426457, - "msecs": 426.0, - "relativeCreated": 14689.595922, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 2 ()", - "asctime": "2025-08-19 23:26:14,426" - } - ], - "time_consumption": 5.650520324707031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638774.4266462, - "msecs": 426.0, - "relativeCreated": 14689.785219, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 4", - "asctime": "2025-08-19 23:26:14,426", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638774.627601, - "msecs": 627.0, - "relativeCreated": 14890.739883, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:14,627", - "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", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.426785, - "msecs": 426.0, - "relativeCreated": 14689.924102, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 4", - "asctime": "2025-08-19 23:26:14,426" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.430073, - "msecs": 430.0, - "relativeCreated": 14693.212147, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:14,430" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.430419, - "msecs": 430.0, - "relativeCreated": 14693.557927, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:14,430" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.430873, - "msecs": 430.0, - "relativeCreated": 14694.011725, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:14,430" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.4311523, - "msecs": 431.0, - "relativeCreated": 14694.29132, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:14,431" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4316258, - "msecs": 431.0, - "relativeCreated": 14694.764782, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:14,431" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.4318626, - "msecs": 431.0, - "relativeCreated": 14695.001627, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:14,431" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4322314, - "msecs": 432.0, - "relativeCreated": 14695.37035, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:14,432" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.432456, - "msecs": 432.0, - "relativeCreated": 14695.594915, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:14,432" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4328728, - "msecs": 432.0, - "relativeCreated": 14696.011735, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:14,432" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.4331262, - "msecs": 433.0, - "relativeCreated": 14696.265096, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:14,433" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4335396, - "msecs": 433.0, - "relativeCreated": 14696.678504, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:14,433" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.4337728, - "msecs": 433.0, - "relativeCreated": 14696.911823, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:14,433" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4341757, - "msecs": 434.0, - "relativeCreated": 14697.31467, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:14,434" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4346032, - "msecs": 434.0, - "relativeCreated": 14697.74239, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:14,434" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4349954, - "msecs": 434.0, - "relativeCreated": 14698.13458, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:14,434" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4353583, - "msecs": 435.0, - "relativeCreated": 14698.497118, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:14,435" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4357219, - "msecs": 435.0, - "relativeCreated": 14698.860904, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:14,435" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4360995, - "msecs": 436.0, - "relativeCreated": 14699.238589, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:14,436" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.4753013, - "msecs": 475.0, - "relativeCreated": 14738.44029, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:14,475" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638774.6274252, - "msecs": 627.0, - "relativeCreated": 14890.564347, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 4 ()", - "asctime": "2025-08-19 23:26:14,627" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638774.6275544, - "msecs": 627.0, - "relativeCreated": 14890.693304, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 4 ()", - "asctime": "2025-08-19 23:26:14,627" - } - ], - "time_consumption": 4.649162292480469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638774.627736, - "msecs": 627.0, - "relativeCreated": 14890.874987, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 6", - "asctime": "2025-08-19 23:26:14,627", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638774.828729, - "msecs": 828.0, - "relativeCreated": 15091.867859, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:14,828", - "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", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.627842, - "msecs": 627.0, - "relativeCreated": 14890.981168, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 6", - "asctime": "2025-08-19 23:26:14,627" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6311107, - "msecs": 631.0, - "relativeCreated": 14894.249747, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:14,631" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.6313653, - "msecs": 631.0, - "relativeCreated": 14894.504483, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:14,631" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6316342, - "msecs": 631.0, - "relativeCreated": 14894.77323, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:14,631" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.6317809, - "msecs": 631.0, - "relativeCreated": 14894.919797, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:14,631" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6321137, - "msecs": 632.0, - "relativeCreated": 14895.252568, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:14,632" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.6322908, - "msecs": 632.0, - "relativeCreated": 14895.429781, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:14,632" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.632584, - "msecs": 632.0, - "relativeCreated": 14895.723181, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:14,632" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.6327243, - "msecs": 632.0, - "relativeCreated": 14895.863266, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:14,632" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6330125, - "msecs": 633.0, - "relativeCreated": 14896.15139, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:14,633" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.6331508, - "msecs": 633.0, - "relativeCreated": 14896.289698, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:14,633" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6334417, - "msecs": 633.0, - "relativeCreated": 14896.580813, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:14,633" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.633576, - "msecs": 633.0, - "relativeCreated": 14896.714894, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:14,633" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.633839, - "msecs": 633.0, - "relativeCreated": 14896.977799, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:14,633" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6340954, - "msecs": 634.0, - "relativeCreated": 14897.234471, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:14,634" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6342866, - "msecs": 634.0, - "relativeCreated": 14897.425508, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:14,634" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6344771, - "msecs": 634.0, - "relativeCreated": 14897.61618, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:14,634" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6346545, - "msecs": 634.0, - "relativeCreated": 14897.793397, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:14,634" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6348345, - "msecs": 634.0, - "relativeCreated": 14897.973535, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:14,634" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.6741502, - "msecs": 674.0, - "relativeCreated": 14937.289035, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:14,674" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638774.8285496, - "msecs": 828.0, - "relativeCreated": 15091.688647, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 6 ()", - "asctime": "2025-08-19 23:26:14,828" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638774.8286788, - "msecs": 828.0, - "relativeCreated": 15091.817958, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 6 ()", - "asctime": "2025-08-19 23:26:14,828" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638774.828865, - "msecs": 828.0, - "relativeCreated": 15092.004114, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 8", - "asctime": "2025-08-19 23:26:14,828", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638775.0300167, - "msecs": 30.0, - "relativeCreated": 15293.155822, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:15,030", - "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", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.82901, - "msecs": 829.0, - "relativeCreated": 15092.148912, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 8", - "asctime": "2025-08-19 23:26:14,829" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.832263, - "msecs": 832.0, - "relativeCreated": 15095.401906, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:14,832" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.8324997, - "msecs": 832.0, - "relativeCreated": 15095.638589, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:14,832" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8327708, - "msecs": 832.0, - "relativeCreated": 15095.909943, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:14,832" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.8329308, - "msecs": 832.0, - "relativeCreated": 15096.06992, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:14,832" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.833217, - "msecs": 833.0, - "relativeCreated": 15096.356151, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:14,833" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.8333662, - "msecs": 833.0, - "relativeCreated": 15096.505355, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:14,833" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8336146, - "msecs": 833.0, - "relativeCreated": 15096.753626, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:14,833" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.8337452, - "msecs": 833.0, - "relativeCreated": 15096.884168, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:14,833" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8339832, - "msecs": 833.0, - "relativeCreated": 15097.122226, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:14,833" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.834121, - "msecs": 834.0, - "relativeCreated": 15097.259962, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:14,834" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.834349, - "msecs": 834.0, - "relativeCreated": 15097.487932, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:14,834" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638774.8344762, - "msecs": 834.0, - "relativeCreated": 15097.615277, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:14,834" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.834695, - "msecs": 834.0, - "relativeCreated": 15097.8343, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:14,834" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8349316, - "msecs": 834.0, - "relativeCreated": 15098.070788, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:14,834" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8351183, - "msecs": 835.0, - "relativeCreated": 15098.257416, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:14,835" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8353004, - "msecs": 835.0, - "relativeCreated": 15098.439355, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:14,835" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8354802, - "msecs": 835.0, - "relativeCreated": 15098.619209, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:14,835" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8356938, - "msecs": 835.0, - "relativeCreated": 15098.832708, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:14,835" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638774.8762703, - "msecs": 876.0, - "relativeCreated": 15139.40927, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:14,876" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638775.0297813, - "msecs": 29.0, - "relativeCreated": 15292.920266, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 8 ()", - "asctime": "2025-08-19 23:26:15,029" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638775.0299542, - "msecs": 29.0, - "relativeCreated": 15293.093422, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 8 ()", - "asctime": "2025-08-19 23:26:15,029" - } - ], - "time_consumption": 6.246566772460938e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/livingroom/floorlamp", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638775.0301692, - "msecs": 30.0, - "relativeCreated": 15293.308262, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/livingroom/floorlamp to 10", - "asctime": "2025-08-19 23:26:15,030", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638775.2312512, - "msecs": 231.0, - "relativeCreated": 15494.390284, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/livingroom/floor_light_1 is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:15,231", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.0303178, - "msecs": 30.0, - "relativeCreated": 15293.456747, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:15,030" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0333166, - "msecs": 33.0, - "relativeCreated": 15296.455646, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:15,033" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.0336368, - "msecs": 33.0, - "relativeCreated": 15296.775847, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:15,033" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0340548, - "msecs": 34.0, - "relativeCreated": 15297.193631, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:15,034" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.034252, - "msecs": 34.0, - "relativeCreated": 15297.390944, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:15,034" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0345888, - "msecs": 34.0, - "relativeCreated": 15297.727902, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:15,034" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.034745, - "msecs": 34.0, - "relativeCreated": 15297.884145, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:15,034" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0350373, - "msecs": 35.0, - "relativeCreated": 15298.17616, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:15,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.0351837, - "msecs": 35.0, - "relativeCreated": 15298.322568, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:15,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0354383, - "msecs": 35.0, - "relativeCreated": 15298.577272, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:15,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.0355773, - "msecs": 35.0, - "relativeCreated": 15298.71627, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:15,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.035818, - "msecs": 35.0, - "relativeCreated": 15298.956907, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:15,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.035986, - "msecs": 35.0, - "relativeCreated": 15299.124903, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:15,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.036233, - "msecs": 36.0, - "relativeCreated": 15299.371962, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:15,036" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.036453, - "msecs": 36.0, - "relativeCreated": 15299.592007, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:15,036" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.036641, - "msecs": 36.0, - "relativeCreated": 15299.779871, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:15,036" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0368202, - "msecs": 36.0, - "relativeCreated": 15299.959133, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:15,036" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0370307, - "msecs": 37.0, - "relativeCreated": 15300.169621, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:15,037" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0372112, - "msecs": 37.0, - "relativeCreated": 15300.350019, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:15,037" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.0781484, - "msecs": 78.0, - "relativeCreated": 15341.287328, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:15,078" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638775.2310517, - "msecs": 231.0, - "relativeCreated": 15494.190794, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/livingroom/floor_light_1): 10 ()", - "asctime": "2025-08-19 23:26:15,231" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/livingroom/floor_light_1", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638775.2311819, - "msecs": 231.0, - "relativeCreated": 15494.320786, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/livingroom/floor_light_1): result = 10 ()", - "asctime": "2025-08-19 23:26:15,231" - } - ], - "time_consumption": 6.937980651855469e-05 - } - ], - "time_consumption": 1.5102782249450684, - "time_start": "2025-08-19 23:26:13,720", - "time_finished": "2025-08-19 23:26:15,231" - }, - "REQ-0017": { - "name": "__tLogger__", - "msg": "REQ-0017", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638775.2315114, - "msecs": 231.0, - "relativeCreated": 15494.650299, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0017", - "asctime": "2025-08-19 23:26:15,231", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638775.331743, - "msecs": 331.0, - "relativeCreated": 15594.881937, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:15,331", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638775.4322984, - "msecs": 432.0, - "relativeCreated": 15695.437509, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:15,432", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.3318753, - "msecs": 331.0, - "relativeCreated": 15595.014382, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:15,331" - } - ], - "time_consumption": 0.10042309761047363 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638775.5329828, - "msecs": 532.0, - "relativeCreated": 15796.1217, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:15,532", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638775.532745, - "msecs": 532.0, - "relativeCreated": 15795.883957, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:15,532" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638775.5329292, - "msecs": 532.0, - "relativeCreated": 15796.068384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:15,532" - } - ], - "time_consumption": 5.364418029785156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638775.5331278, - "msecs": 533.0, - "relativeCreated": 15796.266595, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 0", - "asctime": "2025-08-19 23:26:15,533", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638775.73507, - "msecs": 735.0, - "relativeCreated": 15998.209012, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:15,735", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.5332866, - "msecs": 533.0, - "relativeCreated": 15796.425567, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:15,533" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.533534, - "msecs": 533.0, - "relativeCreated": 15796.672845, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:15,533" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.5337348, - "msecs": 533.0, - "relativeCreated": 15796.873932, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:15,533" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.5340104, - "msecs": 534.0, - "relativeCreated": 15797.149355, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:15,534" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.534261, - "msecs": 534.0, - "relativeCreated": 15797.40002, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:15,534" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.5344553, - "msecs": 534.0, - "relativeCreated": 15797.594416, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:15,534" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.5351174, - "msecs": 535.0, - "relativeCreated": 15798.25622, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:15,535" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.53556, - "msecs": 535.0, - "relativeCreated": 15798.698929, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:15,535" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.535817, - "msecs": 535.0, - "relativeCreated": 15798.955892, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:15,535" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.5361848, - "msecs": 536.0, - "relativeCreated": 15799.323826, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:15,536" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.5365214, - "msecs": 536.0, - "relativeCreated": 15799.660525, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:15,536" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.5761392, - "msecs": 576.0, - "relativeCreated": 15839.278233, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:15,576" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.5763056, - "msecs": 576.0, - "relativeCreated": 15839.4446, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:15,576" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638775.7348387, - "msecs": 734.0, - "relativeCreated": 15997.977761, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 0 ()", - "asctime": "2025-08-19 23:26:15,734" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638775.7350152, - "msecs": 735.0, - "relativeCreated": 15998.154232, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 0 ()", - "asctime": "2025-08-19 23:26:15,735" - } - ], - "time_consumption": 5.4836273193359375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638775.7352335, - "msecs": 735.0, - "relativeCreated": 15998.372448, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 2", - "asctime": "2025-08-19 23:26:15,735", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638775.9381921, - "msecs": 938.0, - "relativeCreated": 16201.331107, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:15,938", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.7354138, - "msecs": 735.0, - "relativeCreated": 15998.552794, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:15,735" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.735666, - "msecs": 735.0, - "relativeCreated": 15998.80484, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:15,735" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.7358413, - "msecs": 735.0, - "relativeCreated": 15998.980202, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:15,735" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.7360232, - "msecs": 736.0, - "relativeCreated": 15999.16239, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:15,736" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.7362354, - "msecs": 736.0, - "relativeCreated": 15999.374357, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:15,736" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.7366004, - "msecs": 736.0, - "relativeCreated": 15999.739331, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:15,736" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.7369235, - "msecs": 736.0, - "relativeCreated": 16000.062391, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:15,736" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.7373052, - "msecs": 737.0, - "relativeCreated": 16000.444053, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:15,737" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.7377596, - "msecs": 737.0, - "relativeCreated": 16000.898462, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:15,737" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.7380872, - "msecs": 738.0, - "relativeCreated": 16001.226093, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:15,738" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.7383015, - "msecs": 738.0, - "relativeCreated": 16001.440431, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:15,738" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.7783582, - "msecs": 778.0, - "relativeCreated": 16041.497367, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:15,778" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.778598, - "msecs": 778.0, - "relativeCreated": 16041.737031, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:15,778" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638775.9379823, - "msecs": 937.0, - "relativeCreated": 16201.121153, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 2 ()", - "asctime": "2025-08-19 23:26:15,937" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638775.9381347, - "msecs": 938.0, - "relativeCreated": 16201.273805, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 2 ()", - "asctime": "2025-08-19 23:26:15,938" - } - ], - "time_consumption": 5.745887756347656e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638775.9383621, - "msecs": 938.0, - "relativeCreated": 16201.500999, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 4", - "asctime": "2025-08-19 23:26:15,938", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638776.14078, - "msecs": 140.0, - "relativeCreated": 16403.919069, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:16,140", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.9385734, - "msecs": 938.0, - "relativeCreated": 16201.712389, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:15,938" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.9388556, - "msecs": 938.0, - "relativeCreated": 16201.994653, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:15,938" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.939033, - "msecs": 939.0, - "relativeCreated": 16202.172153, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:15,939" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.939175, - "msecs": 939.0, - "relativeCreated": 16202.313845, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:15,939" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.9393914, - "msecs": 939.0, - "relativeCreated": 16202.530604, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:15,939" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638775.939837, - "msecs": 939.0, - "relativeCreated": 16202.976029, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:15,939" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.9402692, - "msecs": 940.0, - "relativeCreated": 16203.408431, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:15,940" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.9406428, - "msecs": 940.0, - "relativeCreated": 16203.781872, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:15,940" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.9411101, - "msecs": 941.0, - "relativeCreated": 16204.24909, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:15,941" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.9413888, - "msecs": 941.0, - "relativeCreated": 16204.527679, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:15,941" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.9416285, - "msecs": 941.0, - "relativeCreated": 16204.767506, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:15,941" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.982638, - "msecs": 982.0, - "relativeCreated": 16245.776894, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:15,982" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638775.9830456, - "msecs": 983.0, - "relativeCreated": 16246.184666, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:15,983" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638776.1405644, - "msecs": 140.0, - "relativeCreated": 16403.703419, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 4 ()", - "asctime": "2025-08-19 23:26:16,140" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638776.1407237, - "msecs": 140.0, - "relativeCreated": 16403.862818, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 4 ()", - "asctime": "2025-08-19 23:26:16,140" - } - ], - "time_consumption": 5.626678466796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638776.1409762, - "msecs": 140.0, - "relativeCreated": 16404.115138, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 6", - "asctime": "2025-08-19 23:26:16,140", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638776.3438249, - "msecs": 343.0, - "relativeCreated": 16606.963826, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:16,343", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.1411614, - "msecs": 141.0, - "relativeCreated": 16404.300368, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:16,141" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.141446, - "msecs": 141.0, - "relativeCreated": 16404.585178, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:16,141" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.1415951, - "msecs": 141.0, - "relativeCreated": 16404.734196, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:16,141" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.1417952, - "msecs": 141.0, - "relativeCreated": 16404.934142, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:16,141" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.1428838, - "msecs": 142.0, - "relativeCreated": 16406.022781, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:16,142" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.1431391, - "msecs": 143.0, - "relativeCreated": 16406.27801, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:16,143" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.1435988, - "msecs": 143.0, - "relativeCreated": 16406.737754, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:16,143" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.1439683, - "msecs": 143.0, - "relativeCreated": 16407.107266, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:16,143" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.1442122, - "msecs": 144.0, - "relativeCreated": 16407.351213, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:16,144" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.1444345, - "msecs": 144.0, - "relativeCreated": 16407.573376, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:16,144" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.1446393, - "msecs": 144.0, - "relativeCreated": 16407.778293, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:16,144" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.144884, - "msecs": 144.0, - "relativeCreated": 16408.023348, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:16,144" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.18428, - "msecs": 184.0, - "relativeCreated": 16447.418814, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:16,184" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638776.3436012, - "msecs": 343.0, - "relativeCreated": 16606.740146, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 6 ()", - "asctime": "2025-08-19 23:26:16,343" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638776.3437538, - "msecs": 343.0, - "relativeCreated": 16606.892719, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 6 ()", - "asctime": "2025-08-19 23:26:16,343" - } - ], - "time_consumption": 7.104873657226562e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638776.3440487, - "msecs": 344.0, - "relativeCreated": 16607.187531, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 8", - "asctime": "2025-08-19 23:26:16,344", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638776.54622, - "msecs": 546.0, - "relativeCreated": 16809.359121, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:16,546", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.344289, - "msecs": 344.0, - "relativeCreated": 16607.428097, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:16,344" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.344652, - "msecs": 344.0, - "relativeCreated": 16607.79108, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:16,344" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.3449633, - "msecs": 344.0, - "relativeCreated": 16608.102214, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:16,344" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.3451886, - "msecs": 345.0, - "relativeCreated": 16608.327722, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:16,345" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.3454704, - "msecs": 345.0, - "relativeCreated": 16608.609502, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:16,345" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.3457298, - "msecs": 345.0, - "relativeCreated": 16608.868675, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:16,345" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.3461196, - "msecs": 346.0, - "relativeCreated": 16609.258698, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:16,346" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.3464863, - "msecs": 346.0, - "relativeCreated": 16609.625175, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:16,346" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.34683, - "msecs": 346.0, - "relativeCreated": 16609.96884, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:16,346" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.3471482, - "msecs": 347.0, - "relativeCreated": 16610.287395, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:16,347" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.347448, - "msecs": 347.0, - "relativeCreated": 16610.587192, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:16,347" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.387371, - "msecs": 387.0, - "relativeCreated": 16650.509993, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:16,387" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.3877, - "msecs": 387.0, - "relativeCreated": 16650.839054, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:16,387" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638776.5460684, - "msecs": 546.0, - "relativeCreated": 16809.207527, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 8 ()", - "asctime": "2025-08-19 23:26:16,546" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638776.546174, - "msecs": 546.0, - "relativeCreated": 16809.313084, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 8 ()", - "asctime": "2025-08-19 23:26:16,546" - } - ], - "time_consumption": 4.601478576660156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638776.5463502, - "msecs": 546.0, - "relativeCreated": 16809.489339, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/livingroom/floor_light_1 to 10", - "asctime": "2025-08-19 23:26:16,546", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/livingroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638776.749268, - "msecs": 749.0, - "relativeCreated": 17012.40709, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/livingroom/floorlamp is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:16,749", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.5465117, - "msecs": 546.0, - "relativeCreated": 16809.650518, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:16,546" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.5467339, - "msecs": 546.0, - "relativeCreated": 16809.872832, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:16,546" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.5469263, - "msecs": 546.0, - "relativeCreated": 16810.065402, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:16,546" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.5472887, - "msecs": 547.0, - "relativeCreated": 16810.42757, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:16,547" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_1", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.547542, - "msecs": 547.0, - "relativeCreated": 16810.680916, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:16,547" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_2", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.547922, - "msecs": 547.0, - "relativeCreated": 16811.060893, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:16,547" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.5482159, - "msecs": 548.0, - "relativeCreated": 16811.354821, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:16,548" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.5484161, - "msecs": 548.0, - "relativeCreated": 16811.555253, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:16,548" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_3", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.5486827, - "msecs": 548.0, - "relativeCreated": 16811.821648, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:16,548" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_4", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.5490975, - "msecs": 549.0, - "relativeCreated": 16812.236412, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:16,549" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_5", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.549452, - "msecs": 549.0, - "relativeCreated": 16812.590978, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:16,549" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/livingroom/floor_light_6", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.5894396, - "msecs": 589.0, - "relativeCreated": 16852.578714, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:16,589" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.5898094, - "msecs": 589.0, - "relativeCreated": 16852.94829, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:16,589" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638776.7490344, - "msecs": 749.0, - "relativeCreated": 17012.173476, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/livingroom/floorlamp): 10 ()", - "asctime": "2025-08-19 23:26:16,749" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/livingroom/floorlamp", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638776.7492092, - "msecs": 749.0, - "relativeCreated": 17012.348039, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/livingroom/floorlamp): result = 10 ()", - "asctime": "2025-08-19 23:26:16,749" - } - ], - "time_consumption": 5.888938903808594e-05 - } - ], - "time_consumption": 1.517756700515747, - "time_start": "2025-08-19 23:26:15,231", - "time_finished": "2025-08-19 23:26:16,749" - }, - "REQ-0021": { - "name": "__tLogger__", - "msg": "REQ-0021", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638776.7495513, - "msecs": 749.0, - "relativeCreated": 17012.690349, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0021", - "asctime": "2025-08-19 23:26:16,749", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ + "ViDevLight.state (ffe.livingroom.main_light)", "False" ], "levelname": "DEBUG", @@ -32684,24 +2690,24 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 19, + "lineno": 28, "funcName": "device_follow", - "created": 1755638776.8503766, - "msecs": 850.0, - "relativeCreated": 17113.515814, - "thread": 131449228267776, + "created": 1755888839.2298782, + "msecs": 229.0, + "relativeCreated": 1104.687469, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:16,850", + "message": "Setting state of ViDevLight.state (ffe.livingroom.main_light) to False", + "asctime": "2025-08-22 20:53:59,229", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state.set", + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/state/set", + "videv/ffe/livingroom/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -32713,383 +2719,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638776.7497218, - "msecs": 749.0, - "relativeCreated": 17012.860739, - "thread": 131449228267776, + "created": 1755888839.1294556, + "msecs": 129.0, + "relativeCreated": 1004.264753, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:16,749" + "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:53:59,129" }, { - "name": "smart_brain.devices.shellies.ffe.sleep.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638776.750041, - "msecs": 750.0, - "relativeCreated": 17013.180064, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:16,750" - } - ], - "time_consumption": 0.10033559799194336 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638776.9511619, - "msecs": 951.0, - "relativeCreated": 17214.300932, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:16,951", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638776.950962, - "msecs": 950.0, - "relativeCreated": 17214.1012, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:16,950" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638776.951109, - "msecs": 951.0, - "relativeCreated": 17214.247762, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:16,951" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638776.9512727, - "msecs": 951.0, - "relativeCreated": 17214.411703, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to True", - "asctime": "2025-08-19 23:26:16,951", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.sleep) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638777.1523352, - "msecs": 152.0, - "relativeCreated": 17415.474137, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.sleep) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:17,152", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.951403, - "msecs": 951.0, - "relativeCreated": 17214.541898, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:16,951" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0.command", + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0/command", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.9539902, - "msecs": 953.0, - "relativeCreated": 17217.129147, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:16,953" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.9542174, - "msecs": 954.0, - "relativeCreated": 17217.356502, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:16,954" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638776.9544618, - "msecs": 954.0, - "relativeCreated": 17217.6007, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:16,954" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.9549654, - "msecs": 954.0, - "relativeCreated": 17218.104197, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:16,954" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638776.9552195, - "msecs": 955.0, - "relativeCreated": 17218.358343, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:16,955" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638777.0385354, - "msecs": 38.0, - "relativeCreated": 17301.674411, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:17,038" - }, - { - "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", + "videv/ffe/livingroom/floorlamp/brightness", "b'50'" ], "levelname": "DEBUG", @@ -33101,22 +2746,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638777.03894, - "msecs": 38.0, - "relativeCreated": 17302.078907, - "thread": 131449202394816, + "created": 1755888839.130287, + "msecs": 130.0, + "relativeCreated": 1005.096026, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:17,038" + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50'", + "asctime": "2025-08-22 20:53:59,130" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/color_temp", + "videv/ffe/livingroom/floorlamp/color_temp", "b'5'" ], "levelname": "DEBUG", @@ -33128,165 +2773,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638777.0391834, - "msecs": 39.0, - "relativeCreated": 17302.322283, - "thread": 131449202394816, + "created": 1755888839.1713536, + "msecs": 171.0, + "relativeCreated": 1046.162713, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:26:17,039" + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", + "asctime": "2025-08-22 20:53:59,171" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.sleep)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638777.152106, - "msecs": 152.0, - "relativeCreated": 17415.24505, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.sleep)): True ()", - "asctime": "2025-08-19 23:26:17,152" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.sleep)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638777.1522784, - "msecs": 152.0, - "relativeCreated": 17415.417498, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.sleep)): result = True ()", - "asctime": "2025-08-19 23:26:17,152" - } - ], - "time_consumption": 5.6743621826171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638777.15245, - "msecs": 152.0, - "relativeCreated": 17415.589172, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to False", - "asctime": "2025-08-19 23:26:17,152", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.sleep) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638777.3532317, - "msecs": 353.0, - "relativeCreated": 17616.370699, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.sleep) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:17,353", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638777.1525598, - "msecs": 152.0, - "relativeCreated": 17415.698769, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:17,152" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0.command", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0/command", + "shellies/ffe/livingroom/main_light/relay/0/command", "b'off'" ], "levelname": "DEBUG", @@ -33298,22 +2800,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638777.1550403, - "msecs": 155.0, - "relativeCreated": 17418.179372, - "thread": 131449202394816, + "created": 1755888839.1717591, + "msecs": 171.0, + "relativeCreated": 1046.568318, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:17,155" + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:53:59,171" }, { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/ffe/livingroom/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -33325,22 +2827,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638777.1552699, - "msecs": 155.0, - "relativeCreated": 17418.408787, - "thread": 131449202394816, + "created": 1755888839.1719124, + "msecs": 171.0, + "relativeCreated": 1046.721622, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:17,155" + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:53:59,171" }, { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/ffe/livingroom/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -33352,813 +2854,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638777.1558416, - "msecs": 155.0, - "relativeCreated": 17418.980661, - "thread": 131449202394816, + "created": 1755888839.1724923, + "msecs": 172.0, + "relativeCreated": 1047.301399, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:17,155" + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:53:59,172" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638777.2377665, - "msecs": 237.0, - "relativeCreated": 17500.905426, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:17,237" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.sleep)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638777.3530374, - "msecs": 353.0, - "relativeCreated": 17616.176277, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.sleep)): False ()", - "asctime": "2025-08-19 23:26:17,353" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.sleep)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638777.3531768, - "msecs": 353.0, - "relativeCreated": 17616.31578, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.sleep)): result = False ()", - "asctime": "2025-08-19 23:26:17,353" - } - ], - "time_consumption": 5.4836273193359375e-05 - } - ], - "time_consumption": 0.6036803722381592, - "time_start": "2025-08-19 23:26:16,749", - "time_finished": "2025-08-19 23:26:17,353" - }, - "REQ-0022": { - "name": "__tLogger__", - "msg": "REQ-0022", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638777.3534873, - "msecs": 353.0, - "relativeCreated": 17616.626272, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0022", - "asctime": "2025-08-19 23:26:17,353", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638777.4541547, - "msecs": 454.0, - "relativeCreated": 17717.293746, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:17,454", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638777.353673, - "msecs": 353.0, - "relativeCreated": 17616.81208, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:17,353" - } - ], - "time_consumption": 0.10048174858093262 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638777.5546584, - "msecs": 554.0, - "relativeCreated": 17817.797346, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:17,554", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638777.5544808, - "msecs": 554.0, - "relativeCreated": 17817.619811, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:17,554" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638777.5546072, - "msecs": 554.0, - "relativeCreated": 17817.746226, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:17,554" - } - ], - "time_consumption": 5.125999450683594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.sleep)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638777.554758, - "msecs": 554.0, - "relativeCreated": 17817.897226, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.sleep) to True", - "asctime": "2025-08-19 23:26:17,554", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638777.7561288, - "msecs": 756.0, - "relativeCreated": 18019.267866, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:17,756", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638777.5548615, - "msecs": 554.0, - "relativeCreated": 17818.000564, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:17,554" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638777.555178, - "msecs": 555.0, - "relativeCreated": 17818.316912, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:17,555" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638777.5558345, - "msecs": 555.0, - "relativeCreated": 17818.973738, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:17,555" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638777.556194, - "msecs": 556.0, - "relativeCreated": 17819.332957, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:17,556" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638777.5573893, - "msecs": 557.0, - "relativeCreated": 17820.528354, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:17,557" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638777.7558768, - "msecs": 755.0, - "relativeCreated": 18019.015942, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): True ()", - "asctime": "2025-08-19 23:26:17,755" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638777.7560534, - "msecs": 756.0, - "relativeCreated": 18019.192603, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = True ()", - "asctime": "2025-08-19 23:26:17,756" - } - ], - "time_consumption": 7.534027099609375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.sleep)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638777.7562423, - "msecs": 756.0, - "relativeCreated": 18019.381184, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.sleep) to False", - "asctime": "2025-08-19 23:26:17,756", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638777.957241, - "msecs": 957.0, - "relativeCreated": 18220.380115, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:17,957", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638777.7563612, - "msecs": 756.0, - "relativeCreated": 18019.500322, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:17,756" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638777.7574272, - "msecs": 757.0, - "relativeCreated": 18020.56609, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:17,757" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638777.799933, - "msecs": 799.0, - "relativeCreated": 18063.071936, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:17,799" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638777.9570482, - "msecs": 957.0, - "relativeCreated": 18220.187124, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): False ()", - "asctime": "2025-08-19 23:26:17,957" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638777.9571874, - "msecs": 957.0, - "relativeCreated": 18220.326299, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = False ()", - "asctime": "2025-08-19 23:26:17,957" - } - ], - "time_consumption": 5.364418029785156e-05 - } - ], - "time_consumption": 0.6037538051605225, - "time_start": "2025-08-19 23:26:17,353", - "time_finished": "2025-08-19 23:26:17,957" - }, - "REQ-0023": { - "name": "__tLogger__", - "msg": "REQ-0023", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638777.9574838, - "msecs": 957.0, - "relativeCreated": 18220.622731, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0023", - "asctime": "2025-08-19 23:26:17,957", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638778.0581062, - "msecs": 58.0, - "relativeCreated": 18321.245149, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:18,058", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638777.9576921, - "msecs": 957.0, - "relativeCreated": 18220.831287, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", - "asctime": "2025-08-19 23:26:17,957" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", + "zigbee_ffe/ffe/livingroom/floor_light_1/set", "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", @@ -34170,169 +2881,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638777.9599404, - "msecs": 959.0, - "relativeCreated": 18223.079239, - "thread": 131449202394816, + "created": 1755888839.2145975, + "msecs": 214.0, + "relativeCreated": 1089.406512, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:17,959" - } - ], - "time_consumption": 0.09816575050354004 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638778.158565, - "msecs": 158.0, - "relativeCreated": 18421.704012, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:18,158", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638778.1584518, - "msecs": 158.0, - "relativeCreated": 18421.590624, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:18,158" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,214" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638778.1585402, - "msecs": 158.0, - "relativeCreated": 18421.67929, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:18,158" - } - ], - "time_consumption": 2.47955322265625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638778.1586175, - "msecs": 158.0, - "relativeCreated": 18421.75662, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to True", - "asctime": "2025-08-19 23:26:18,158", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Bed Light Dirk (ffe.sleep) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638778.3592036, - "msecs": 359.0, - "relativeCreated": 18622.342697, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Bed Light Dirk (ffe.sleep) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:18,359", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state.set", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_di/state/set", - "true" + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -34343,300 +2908,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638778.1586661, - "msecs": 158.0, - "relativeCreated": 18421.805369, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload true", - "asctime": "2025-08-19 23:26:18,158" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638778.1596346, - "msecs": 159.0, - "relativeCreated": 18422.773815, - "thread": 131449202394816, + "created": 1755888839.2148786, + "msecs": 214.0, + "relativeCreated": 1089.687576, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:18,159" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,214" }, { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638778.1598039, - "msecs": 159.0, - "relativeCreated": 18422.942953, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:18,159" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638778.1600554, - "msecs": 160.0, - "relativeCreated": 18423.194377, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:18,160" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638778.242362, - "msecs": 242.0, - "relativeCreated": 18505.50122, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", - "asctime": "2025-08-19 23:26:18,242" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638778.2426512, - "msecs": 242.0, - "relativeCreated": 18505.790081, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:18,242" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Bed Light Dirk (ffe.sleep)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638778.3590832, - "msecs": 359.0, - "relativeCreated": 18622.222191, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Bed Light Dirk (ffe.sleep)): True ()", - "asctime": "2025-08-19 23:26:18,359" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Bed Light Dirk (ffe.sleep)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638778.3591723, - "msecs": 359.0, - "relativeCreated": 18622.311479, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Bed Light Dirk (ffe.sleep)): result = True ()", - "asctime": "2025-08-19 23:26:18,359" - } - ], - "time_consumption": 3.123283386230469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638778.3592732, - "msecs": 359.0, - "relativeCreated": 18622.4123, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to False", - "asctime": "2025-08-19 23:26:18,359", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Bed Light Dirk (ffe.sleep) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638778.5597875, - "msecs": 559.0, - "relativeCreated": 18822.92641, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Bed Light Dirk (ffe.sleep) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:18,559", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638778.3593557, - "msecs": 359.0, - "relativeCreated": 18622.494718, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", - "asctime": "2025-08-19 23:26:18,359" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", + "zigbee_ffe/ffe/livingroom/floor_light_2/set", "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", @@ -34648,23 +2935,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638778.3606215, - "msecs": 360.0, - "relativeCreated": 18623.7607, - "thread": 131449202394816, + "created": 1755888839.215169, + "msecs": 215.0, + "relativeCreated": 1089.978205, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:18,360" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,215" }, { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"off\", \"brightness\": 127.0}" + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -34675,23 +2962,23 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638778.3608344, - "msecs": 360.0, - "relativeCreated": 18623.973364, - "thread": 131449202394816, + "created": 1755888839.2204933, + "msecs": 220.0, + "relativeCreated": 1095.302656, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:18,360" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,220" }, { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"off\", \"brightness\": 127.0}'" + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -34702,22 +2989,211 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638778.361148, - "msecs": 361.0, - "relativeCreated": 18624.287114, - "thread": 131449202394816, + "created": 1755888839.2209287, + "msecs": 220.0, + "relativeCreated": 1095.737955, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:18,361" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,220" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.2210963, + "msecs": 221.0, + "relativeCreated": 1095.90546, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,221" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_di/state", + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2213206, + "msecs": 221.0, + "relativeCreated": 1096.129963, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,221" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.2214737, + "msecs": 221.0, + "relativeCreated": 1096.28292, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,221" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2217505, + "msecs": 221.0, + "relativeCreated": 1096.559703, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,221" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.2218993, + "msecs": 221.0, + "relativeCreated": 1096.708609, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,221" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2221038, + "msecs": 222.0, + "relativeCreated": 1096.913051, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,222" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.222229, + "msecs": 222.0, + "relativeCreated": 1097.038324, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,222" + }, + { + "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", @@ -34729,339 +3205,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638778.4436557, - "msecs": 443.0, - "relativeCreated": 18706.79479, - "thread": 131449202394816, + "created": 1755888839.2224631, + "msecs": 222.0, + "relativeCreated": 1097.272547, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", - "asctime": "2025-08-19 23:26:18,443" + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:59,222" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Bed Light Dirk (ffe.sleep)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638778.5596747, - "msecs": 559.0, - "relativeCreated": 18822.813703, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Bed Light Dirk (ffe.sleep)): False ()", - "asctime": "2025-08-19 23:26:18,559" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Bed Light Dirk (ffe.sleep)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638778.5597558, - "msecs": 559.0, - "relativeCreated": 18822.894794, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Bed Light Dirk (ffe.sleep)): result = False ()", - "asctime": "2025-08-19 23:26:18,559" - } - ], - "time_consumption": 3.170967102050781e-05 - } - ], - "time_consumption": 0.6023037433624268, - "time_start": "2025-08-19 23:26:17,957", - "time_finished": "2025-08-19 23:26:18,559" - }, - "REQ-0024": { - "name": "__tLogger__", - "msg": "REQ-0024", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638778.559964, - "msecs": 559.0, - "relativeCreated": 18823.102833, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0024", - "asctime": "2025-08-19 23:26:18,559", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638778.6604815, - "msecs": 660.0, - "relativeCreated": 18923.620569, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:18,660", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638778.5600643, - "msecs": 560.0, - "relativeCreated": 18823.203263, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", - "asctime": "2025-08-19 23:26:18,560" - } - ], - "time_consumption": 0.1004171371459961 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638778.7610645, - "msecs": 761.0, - "relativeCreated": 19024.203431, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:18,761", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638778.7608411, - "msecs": 760.0, - "relativeCreated": 19023.980188, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:18,760" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638778.7610102, - "msecs": 761.0, - "relativeCreated": 19024.149098, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:18,761" - } - ], - "time_consumption": 5.435943603515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Bed Light Dirk (ffe.sleep)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638778.7611732, - "msecs": 761.0, - "relativeCreated": 19024.312218, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Bed Light Dirk (ffe.sleep) to True", - "asctime": "2025-08-19 23:26:18,761", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638778.9622223, - "msecs": 962.0, - "relativeCreated": 19225.361405, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:18,962", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638778.7613587, - "msecs": 761.0, - "relativeCreated": 19024.497839, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:18,761" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0}'" + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -35072,23 +3232,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638778.7622895, - "msecs": 762.0, - "relativeCreated": 19025.42832, - "thread": 131449202394816, + "created": 1755888839.2227128, + "msecs": 222.0, + "relativeCreated": 1097.52196, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:18,762" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,222" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'true'" + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -35099,109 +3259,131 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638778.7640445, - "msecs": 764.0, - "relativeCreated": 19027.183658, - "thread": 131449202394816, + "created": 1755888839.2229054, + "msecs": 222.0, + "relativeCreated": 1097.714664, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", - "asctime": "2025-08-19 23:26:18,764" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,222" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "True", - "" + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638778.962031, - "msecs": 962.0, - "relativeCreated": 19225.169885, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2230866, + "msecs": 223.0, + "relativeCreated": 1097.895768, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): True ()", - "asctime": "2025-08-19 23:26:18,962" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,223" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "=", - "True", - "" + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638778.9621654, - "msecs": 962.0, - "relativeCreated": 19225.304334, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2232618, + "msecs": 223.0, + "relativeCreated": 1098.071087, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = True ()", - "asctime": "2025-08-19 23:26:18,962" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,223" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2234392, + "msecs": 223.0, + "relativeCreated": 1098.24835, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,223" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2236116, + "msecs": 223.0, + "relativeCreated": 1098.420981, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,223" } ], - "time_consumption": 5.698204040527344e-05 + "time_consumption": 0.006266593933105469 }, { "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Bed Light Dirk (ffe.sleep)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638778.962334, - "msecs": 962.0, - "relativeCreated": 19225.473037, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Bed Light Dirk (ffe.sleep) to False", - "asctime": "2025-08-19 23:26:18,962", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", + "msg": "Value for Shelly.relay/0 (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", "args": [ "False", "" @@ -35215,103 +3397,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638779.1633763, - "msecs": 163.0, - "relativeCreated": 19426.515377, - "thread": 131449228267776, + "created": 1755888839.2301972, + "msecs": 230.0, + "relativeCreated": 1105.006575, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:19,163", + "message": "Value for Shelly.relay/0 (ffe.livingroom.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:53:59,230", "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"off\", \"brightness\": 127.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638778.9625158, - "msecs": 962.0, - "relativeCreated": 19225.654677, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:18,962" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"off\", \"brightness\": 127.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638778.9634628, - "msecs": 963.0, - "relativeCreated": 19226.60196, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:18,963" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638778.9654088, - "msecs": 965.0, - "relativeCreated": 19228.547688, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", - "asctime": "2025-08-19 23:26:18,965" - }, { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/ffe/sleep/bed_light_di", + "Value for Shelly.relay/0 (ffe.livingroom.main_light)", "False", "" ], @@ -35324,22 +3425,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638779.1631474, - "msecs": 163.0, - "relativeCreated": 19426.286461, - "thread": 131449228267776, + "created": 1755888839.2300773, + "msecs": 230.0, + "relativeCreated": 1104.886393, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): False ()", - "asctime": "2025-08-19 23:26:19,163" + "message": "Result (Value for Shelly.relay/0 (ffe.livingroom.main_light)): False ()", + "asctime": "2025-08-22 20:53:59,230" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/ffe/sleep/bed_light_di", + "Value for Shelly.relay/0 (ffe.livingroom.main_light)", "=", "False", "" @@ -35353,28 +3454,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638779.1633196, - "msecs": 163.0, - "relativeCreated": 19426.458586, - "thread": 131449228267776, + "created": 1755888839.2301269, + "msecs": 230.0, + "relativeCreated": 1104.936154, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = False ()", - "asctime": "2025-08-19 23:26:19,163" + "message": "Expectation (Value for Shelly.relay/0 (ffe.livingroom.main_light)): result = False ()", + "asctime": "2025-08-22 20:53:59,230" } ], - "time_consumption": 5.6743621826171875e-05 + "time_consumption": 7.033348083496094e-05 } ], - "time_consumption": 0.603412389755249, - "time_start": "2025-08-19 23:26:18,559", - "time_finished": "2025-08-19 23:26:19,163" + "time_consumption": 0.302567720413208, + "time_start": "2025-08-22 20:53:58,927", + "time_finished": "2025-08-22 20:53:59,230" }, - "REQ-0025": { + "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (ffe.livingroom.main_light)": { "name": "__tLogger__", - "msg": "REQ-0025", + "msg": "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (ffe.livingroom.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -35385,16 +3486,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638779.1636288, - "msecs": 163.0, - "relativeCreated": 19426.767896, - "thread": 131449228267776, + "created": 1755888839.230381, + "msecs": 230.0, + "relativeCreated": 1105.190183, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0025", - "asctime": "2025-08-19 23:26:19,163", + "message": "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (ffe.livingroom.main_light)", + "asctime": "2025-08-22 20:53:59,230", "moduleLogger": [], "testcaseLogger": [ { @@ -35412,22 +3513,22 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638779.2643788, - "msecs": 264.0, - "relativeCreated": 19527.517982, - "thread": 131449228267776, + "created": 1755888839.3309784, + "msecs": 330.0, + "relativeCreated": 1205.787507, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:19,264", + "asctime": "2025-08-22 20:53:59,330", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state.set", + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_ma/state/set", + "videv/ffe/livingroom/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -35439,19 +3540,46 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638779.1637857, - "msecs": 163.0, - "relativeCreated": 19426.924742, - "thread": 131449228267776, + "created": 1755888839.2305028, + "msecs": 230.0, + "relativeCreated": 1105.312113, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", - "asctime": "2025-08-19 23:26:19,163" + "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:53:59,230" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.2591727, + "msecs": 259.0, + "relativeCreated": 1133.981738, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:53:59,259" } ], - "time_consumption": 0.10059309005737305 + "time_consumption": 0.07180571556091309 }, { "name": "__tLogger__", @@ -35469,16 +3597,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638779.365236, - "msecs": 365.0, - "relativeCreated": 19628.374995, - "thread": 131449228267776, + "created": 1755888839.3313205, + "msecs": 331.0, + "relativeCreated": 1206.129866, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:19,365", + "asctime": "2025-08-22 20:53:59,331", "moduleLogger": [ { "name": "__unittest__", @@ -35497,16 +3625,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638779.3649979, - "msecs": 364.0, - "relativeCreated": 19628.137014, - "thread": 131449228267776, + "created": 1755888839.331218, + "msecs": 331.0, + "relativeCreated": 1206.02725, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:19,364" + "asctime": "2025-08-22 20:53:59,331" }, { "name": "__unittest__", @@ -35526,267 +3654,16 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638779.365176, - "msecs": 365.0, - "relativeCreated": 19628.314978, - "thread": 131449228267776, + "created": 1755888839.3312778, + "msecs": 331.0, + "relativeCreated": 1206.086978, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:19,365" - } - ], - "time_consumption": 6.008148193359375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_ma", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638779.3653624, - "msecs": 365.0, - "relativeCreated": 19628.501335, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_ma to True", - "asctime": "2025-08-19 23:26:19,365", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Bed Light Marion (ffe.sleep) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638779.5663311, - "msecs": 566.0, - "relativeCreated": 19829.470116, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Bed Light Marion (ffe.sleep) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:19,566", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638779.3654816, - "msecs": 365.0, - "relativeCreated": 19628.620639, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload true", - "asctime": "2025-08-19 23:26:19,365" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.3680148, - "msecs": 368.0, - "relativeCreated": 19631.153864, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:19,368" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638779.3683398, - "msecs": 368.0, - "relativeCreated": 19631.478775, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:19,368" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.3690848, - "msecs": 369.0, - "relativeCreated": 19632.224025, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:19,369" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.4093335, - "msecs": 409.0, - "relativeCreated": 19672.472575, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", - "asctime": "2025-08-19 23:26:19,409" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Bed Light Marion (ffe.sleep)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638779.5661738, - "msecs": 566.0, - "relativeCreated": 19829.312676, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Bed Light Marion (ffe.sleep)): True ()", - "asctime": "2025-08-19 23:26:19,566" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Bed Light Marion (ffe.sleep)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638779.5662885, - "msecs": 566.0, - "relativeCreated": 19829.427321, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Bed Light Marion (ffe.sleep)): result = True ()", - "asctime": "2025-08-19 23:26:19,566" + "asctime": "2025-08-22 20:53:59,331" } ], "time_consumption": 4.267692565917969e-05 @@ -35795,431 +3672,7 @@ "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/ffe/sleep/bed_light_ma", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638779.566425, - "msecs": 566.0, - "relativeCreated": 19829.564155, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_ma to False", - "asctime": "2025-08-19 23:26:19,566", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Bed Light Marion (ffe.sleep) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638779.7672465, - "msecs": 767.0, - "relativeCreated": 20030.385601, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Bed Light Marion (ffe.sleep) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:19,767", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638779.5665174, - "msecs": 566.0, - "relativeCreated": 19829.656177, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", - "asctime": "2025-08-19 23:26:19,566" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.5680995, - "msecs": 568.0, - "relativeCreated": 19831.238646, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:19,568" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638779.5683277, - "msecs": 568.0, - "relativeCreated": 19831.466676, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:19,568" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.568736, - "msecs": 568.0, - "relativeCreated": 19831.875086, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:19,568" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.6102386, - "msecs": 610.0, - "relativeCreated": 19873.377457, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", - "asctime": "2025-08-19 23:26:19,610" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Bed Light Marion (ffe.sleep)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638779.7670112, - "msecs": 767.0, - "relativeCreated": 20030.150159, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Bed Light Marion (ffe.sleep)): False ()", - "asctime": "2025-08-19 23:26:19,767" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Bed Light Marion (ffe.sleep)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638779.7671769, - "msecs": 767.0, - "relativeCreated": 20030.315886, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Bed Light Marion (ffe.sleep)): result = False ()", - "asctime": "2025-08-19 23:26:19,767" - } - ], - "time_consumption": 6.961822509765625e-05 - } - ], - "time_consumption": 0.6036176681518555, - "time_start": "2025-08-19 23:26:19,163", - "time_finished": "2025-08-19 23:26:19,767" - }, - "REQ-0026": { - "name": "__tLogger__", - "msg": "REQ-0026", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638779.7674797, - "msecs": 767.0, - "relativeCreated": 20030.618625, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0026", - "asctime": "2025-08-19 23:26:19,767", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638779.8679821, - "msecs": 867.0, - "relativeCreated": 20131.121045, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:19,867", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638779.7676144, - "msecs": 767.0, - "relativeCreated": 20030.753582, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", - "asctime": "2025-08-19 23:26:19,767" - } - ], - "time_consumption": 0.10036778450012207 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638779.96837, - "msecs": 968.0, - "relativeCreated": 20231.508952, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:19,968", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638779.9682906, - "msecs": 968.0, - "relativeCreated": 20231.42955, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:19,968" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638779.9683518, - "msecs": 968.0, - "relativeCreated": 20231.490679, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:19,968" - } - ], - "time_consumption": 1.811981201171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Powerplug Bed Light Marion (ffe.sleep)", + "Shelly.relay/0 (ffe.livingroom.main_light)", "True" ], "levelname": "DEBUG", @@ -36229,445 +3682,24 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638779.9684124, - "msecs": 968.0, - "relativeCreated": 20231.551405, - "thread": 131449228267776, + "created": 1755888839.4321167, + "msecs": 432.0, + "relativeCreated": 1306.925885, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Powerplug Bed Light Marion (ffe.sleep) to True", - "asctime": "2025-08-19 23:26:19,968", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_ma is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638780.169123, - "msecs": 169.0, - "relativeCreated": 20432.261868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_ma is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:20,169", + "message": "Setting state of Shelly.relay/0 (ffe.livingroom.main_light) to True", + "asctime": "2025-08-22 20:53:59,432", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638779.9684653, - "msecs": 968.0, - "relativeCreated": 20231.604304, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:19,968" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.9688017, - "msecs": 968.0, - "relativeCreated": 20231.940744, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:19,968" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638779.969382, - "msecs": 969.0, - "relativeCreated": 20232.521052, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", - "asctime": "2025-08-19 23:26:19,969" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_ma", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638780.1689408, - "msecs": 168.0, - "relativeCreated": 20432.079893, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_ma): True ()", - "asctime": "2025-08-19 23:26:20,168" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_ma", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638780.1690755, - "msecs": 169.0, - "relativeCreated": 20432.214344, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_ma): result = True ()", - "asctime": "2025-08-19 23:26:20,169" - } - ], - "time_consumption": 4.744529724121094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Powerplug Bed Light Marion (ffe.sleep)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638780.1692345, - "msecs": 169.0, - "relativeCreated": 20432.373382, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Powerplug Bed Light Marion (ffe.sleep) to False", - "asctime": "2025-08-19 23:26:20,169", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_ma is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638780.3698807, - "msecs": 369.0, - "relativeCreated": 20633.019564, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_ma is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:20,369", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638780.1693685, - "msecs": 169.0, - "relativeCreated": 20432.50746, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:20,169" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_ma", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.170058, - "msecs": 170.0, - "relativeCreated": 20433.19705, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:20,170" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.1711726, - "msecs": 171.0, - "relativeCreated": 20434.311737, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", - "asctime": "2025-08-19 23:26:20,171" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_ma", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638780.3698018, - "msecs": 369.0, - "relativeCreated": 20632.940741, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_ma): False ()", - "asctime": "2025-08-19 23:26:20,369" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_ma", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638780.3698618, - "msecs": 369.0, - "relativeCreated": 20633.000884, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_ma): result = False ()", - "asctime": "2025-08-19 23:26:20,369" - } - ], - "time_consumption": 1.8835067749023438e-05 - } - ], - "time_consumption": 0.6024010181427002, - "time_start": "2025-08-19 23:26:19,767", - "time_finished": "2025-08-19 23:26:20,369" - }, - "REQ-0027": { - "name": "__tLogger__", - "msg": "REQ-0027", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638780.369991, - "msecs": 369.0, - "relativeCreated": 20633.130128, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0027", - "asctime": "2025-08-19 23:26:20,369", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638780.4705098, - "msecs": 470.0, - "relativeCreated": 20733.64888, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:20,470", - "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/ffe/livingroom/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -36679,22 +3711,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638780.370042, - "msecs": 370.0, - "relativeCreated": 20633.181077, - "thread": 131449228267776, + "created": 1755888839.3314457, + "msecs": 331.0, + "relativeCreated": 1206.25499, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:20,370" + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:53:59,331" }, { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee_ffe/ffe/sleep/main_light", + "zigbee_ffe/ffe/livingroom/main_light", "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", @@ -36706,22 +3738,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638780.370168, - "msecs": 370.0, - "relativeCreated": 20633.307181, - "thread": 131449228267776, + "created": 1755888839.3318052, + "msecs": 331.0, + "relativeCreated": 1206.614312, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:20,370" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,331" }, { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/ffe/livingroom/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -36733,19495 +3765,22 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638780.3704758, - "msecs": 370.0, - "relativeCreated": 20633.614903, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:20,370" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.3706808, - "msecs": 370.0, - "relativeCreated": 20633.819738, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:20,370" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.4111183, - "msecs": 411.0, - "relativeCreated": 20674.257353, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:20,411" - } - ], - "time_consumption": 0.05939149856567383 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638780.5714624, - "msecs": 571.0, - "relativeCreated": 20834.601316, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:20,571", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638780.4708486, - "msecs": 470.0, - "relativeCreated": 20733.98746, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:20,470" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638780.4711943, - "msecs": 471.0, - "relativeCreated": 20734.333419, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:20,471" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.4733033, - "msecs": 473.0, - "relativeCreated": 20736.442404, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:20,473" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.4737594, - "msecs": 473.0, - "relativeCreated": 20736.898434, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:20,473" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.5157516, - "msecs": 515.0, - "relativeCreated": 20778.890746, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:20,515" - } - ], - "time_consumption": 0.055710792541503906 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638780.6720665, - "msecs": 672.0, - "relativeCreated": 20935.205643, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:20,672", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638780.6717482, - "msecs": 671.0, - "relativeCreated": 20934.887004, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:20,671" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638780.6719756, - "msecs": 671.0, - "relativeCreated": 20935.114742, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:20,671" - } - ], - "time_consumption": 9.083747863769531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638780.672231, - "msecs": 672.0, - "relativeCreated": 20935.369834, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 0", - "asctime": "2025-08-19 23:26:20,672", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638780.8729472, - "msecs": 872.0, - "relativeCreated": 21136.08633, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:20,872", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638780.6723762, - "msecs": 672.0, - "relativeCreated": 20935.515114, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:26:20,672" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.6748757, - "msecs": 674.0, - "relativeCreated": 20938.014534, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:20,674" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638780.675261, - "msecs": 675.0, - "relativeCreated": 20938.399841, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:20,675" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.6760747, - "msecs": 676.0, - "relativeCreated": 20939.213705, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:20,676" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.717084, - "msecs": 717.0, - "relativeCreated": 20980.222971, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:20,717" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638780.872829, - "msecs": 872.0, - "relativeCreated": 21135.967898, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 0 ()", - "asctime": "2025-08-19 23:26:20,872" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638780.8729126, - "msecs": 872.0, - "relativeCreated": 21136.051577, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:20,872" - } - ], - "time_consumption": 3.457069396972656e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638780.8730092, - "msecs": 873.0, - "relativeCreated": 21136.148069, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 20", - "asctime": "2025-08-19 23:26:20,873", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638781.0734432, - "msecs": 73.0, - "relativeCreated": 21336.582076, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:21,073", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638780.8730543, - "msecs": 873.0, - "relativeCreated": 21136.193223, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:26:20,873" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.8738844, - "msecs": 873.0, - "relativeCreated": 21137.023468, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:20,873" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638780.8739915, - "msecs": 873.0, - "relativeCreated": 21137.130487, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:20,873" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.8741696, - "msecs": 874.0, - "relativeCreated": 21137.308657, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:20,874" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638780.9161243, - "msecs": 916.0, - "relativeCreated": 21179.263436, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:20,916" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638781.0733566, - "msecs": 73.0, - "relativeCreated": 21336.495497, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 20 ()", - "asctime": "2025-08-19 23:26:21,073" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638781.0734239, - "msecs": 73.0, - "relativeCreated": 21336.562753, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:21,073" - } - ], - "time_consumption": 1.9311904907226562e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638781.0734923, - "msecs": 73.0, - "relativeCreated": 21336.631266, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 40", - "asctime": "2025-08-19 23:26:21,073", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638781.2741098, - "msecs": 274.0, - "relativeCreated": 21537.249038, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:21,274", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.073536, - "msecs": 73.0, - "relativeCreated": 21336.675064, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:26:21,073" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.0744276, - "msecs": 74.0, - "relativeCreated": 21337.56663, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:21,074" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.0745816, - "msecs": 74.0, - "relativeCreated": 21337.720437, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:21,074" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.074867, - "msecs": 74.0, - "relativeCreated": 21338.005926, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:21,074" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.1161098, - "msecs": 116.0, - "relativeCreated": 21379.248921, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:21,116" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638781.2740402, - "msecs": 274.0, - "relativeCreated": 21537.17924, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 40 ()", - "asctime": "2025-08-19 23:26:21,274" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638781.2740948, - "msecs": 274.0, - "relativeCreated": 21537.23385, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:21,274" - } - ], - "time_consumption": 1.5020370483398438e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638781.2741501, - "msecs": 274.0, - "relativeCreated": 21537.289125, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 60", - "asctime": "2025-08-19 23:26:21,274", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638781.475018, - "msecs": 475.0, - "relativeCreated": 21738.157035, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:21,475", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.2741902, - "msecs": 274.0, - "relativeCreated": 21537.329144, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:26:21,274" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.275071, - "msecs": 275.0, - "relativeCreated": 21538.209869, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:21,275" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.2752247, - "msecs": 275.0, - "relativeCreated": 21538.363511, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:21,275" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.275468, - "msecs": 275.0, - "relativeCreated": 21538.607096, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:21,275" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.3180861, - "msecs": 318.0, - "relativeCreated": 21581.225032, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:21,318" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638781.4747827, - "msecs": 474.0, - "relativeCreated": 21737.921802, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 60 ()", - "asctime": "2025-08-19 23:26:21,474" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638781.474962, - "msecs": 474.0, - "relativeCreated": 21738.100875, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:21,474" - } - ], - "time_consumption": 5.602836608886719e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638781.4751282, - "msecs": 475.0, - "relativeCreated": 21738.267157, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 80", - "asctime": "2025-08-19 23:26:21,475", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638781.6761417, - "msecs": 676.0, - "relativeCreated": 21939.280861, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:21,676", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.4752789, - "msecs": 475.0, - "relativeCreated": 21738.417863, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:26:21,475" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.4779737, - "msecs": 477.0, - "relativeCreated": 21741.112778, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:21,477" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.4782362, - "msecs": 478.0, - "relativeCreated": 21741.375143, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:21,478" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.479099, - "msecs": 479.0, - "relativeCreated": 21742.238265, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:21,479" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.520082, - "msecs": 520.0, - "relativeCreated": 21783.220962, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:21,520" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638781.6759486, - "msecs": 675.0, - "relativeCreated": 21939.087653, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 80 ()", - "asctime": "2025-08-19 23:26:21,675" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638781.676091, - "msecs": 676.0, - "relativeCreated": 21939.229761, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:21,676" - } - ], - "time_consumption": 5.078315734863281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638781.6762536, - "msecs": 676.0, - "relativeCreated": 21939.392391, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 100", - "asctime": "2025-08-19 23:26:21,676", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638781.877089, - "msecs": 877.0, - "relativeCreated": 22140.227948, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:21,877", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.6763918, - "msecs": 676.0, - "relativeCreated": 21939.53092, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:21,676" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.6786299, - "msecs": 678.0, - "relativeCreated": 21941.769014, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:21,678" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.678878, - "msecs": 678.0, - "relativeCreated": 21942.016848, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:21,678" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.6795418, - "msecs": 679.0, - "relativeCreated": 21942.680882, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:21,679" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638781.720741, - "msecs": 720.0, - "relativeCreated": 21983.880133, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:21,720" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638781.8769941, - "msecs": 876.0, - "relativeCreated": 22140.133084, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 100 ()", - "asctime": "2025-08-19 23:26:21,876" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638781.8770704, - "msecs": 877.0, - "relativeCreated": 22140.209235, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:21,877" - } - ], - "time_consumption": 1.8596649169921875e-05 - } - ], - "time_consumption": 1.5070979595184326, - "time_start": "2025-08-19 23:26:20,369", - "time_finished": "2025-08-19 23:26:21,877" - }, - "REQ-0028": { - "name": "__tLogger__", - "msg": "REQ-0028", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638781.8772223, - "msecs": 877.0, - "relativeCreated": 22140.361288, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0028", - "asctime": "2025-08-19 23:26:21,877", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638781.9773889, - "msecs": 977.0, - "relativeCreated": 22240.527747, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:21,977", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638782.0781174, - "msecs": 78.0, - "relativeCreated": 22341.256427, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:22,078", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638781.9776678, - "msecs": 977.0, - "relativeCreated": 22240.806719, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:21,977" - } - ], - "time_consumption": 0.1004495620727539 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638782.178535, - "msecs": 178.0, - "relativeCreated": 22441.674007, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:22,178", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638782.1784115, - "msecs": 178.0, - "relativeCreated": 22441.550451, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:22,178" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638782.1785145, - "msecs": 178.0, - "relativeCreated": 22441.653445, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:22,178" - } - ], - "time_consumption": 2.0503997802734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638782.1785927, - "msecs": 178.0, - "relativeCreated": 22441.731764, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 0", - "asctime": "2025-08-19 23:26:22,178", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638782.3792274, - "msecs": 379.0, - "relativeCreated": 22642.366484, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:22,379", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638782.1786883, - "msecs": 178.0, - "relativeCreated": 22441.827328, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:22,178" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.1790938, - "msecs": 179.0, - "relativeCreated": 22442.232696, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:22,179" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.1796355, - "msecs": 179.0, - "relativeCreated": 22442.774357, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:22,179" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638782.3791542, - "msecs": 379.0, - "relativeCreated": 22642.293197, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 0 ()", - "asctime": "2025-08-19 23:26:22,379" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638782.3792105, - "msecs": 379.0, - "relativeCreated": 22642.349404, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:22,379" - } - ], - "time_consumption": 1.6927719116210938e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638782.3792698, - "msecs": 379.0, - "relativeCreated": 22642.408928, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 20", - "asctime": "2025-08-19 23:26:22,379", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638782.5797827, - "msecs": 579.0, - "relativeCreated": 22842.921785, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:22,579", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638782.3793356, - "msecs": 379.0, - "relativeCreated": 22642.474769, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:22,379" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.3796377, - "msecs": 379.0, - "relativeCreated": 22642.776813, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:22,379" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.380215, - "msecs": 380.0, - "relativeCreated": 22643.354009, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:22,380" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638782.5797024, - "msecs": 579.0, - "relativeCreated": 22842.841264, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 20 ()", - "asctime": "2025-08-19 23:26:22,579" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638782.5797622, - "msecs": 579.0, - "relativeCreated": 22842.901157, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:22,579" - } - ], - "time_consumption": 2.0503997802734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638782.579842, - "msecs": 579.0, - "relativeCreated": 22842.980946, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 40", - "asctime": "2025-08-19 23:26:22,579", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638782.7805924, - "msecs": 780.0, - "relativeCreated": 23043.731505, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:22,780", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638782.5799406, - "msecs": 579.0, - "relativeCreated": 22843.079609, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:22,579" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.5803573, - "msecs": 580.0, - "relativeCreated": 22843.496436, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:22,580" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.5810547, - "msecs": 581.0, - "relativeCreated": 22844.193772, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:22,581" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638782.7803674, - "msecs": 780.0, - "relativeCreated": 23043.506355, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 40 ()", - "asctime": "2025-08-19 23:26:22,780" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638782.7805352, - "msecs": 780.0, - "relativeCreated": 23043.674206, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:22,780" - } - ], - "time_consumption": 5.7220458984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638782.7807229, - "msecs": 780.0, - "relativeCreated": 23043.862072, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 60", - "asctime": "2025-08-19 23:26:22,780", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638782.9817572, - "msecs": 981.0, - "relativeCreated": 23244.89608, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:22,981", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638782.7808754, - "msecs": 780.0, - "relativeCreated": 23044.014484, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:22,780" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.781599, - "msecs": 781.0, - "relativeCreated": 23044.73796, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:22,781" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.782727, - "msecs": 782.0, - "relativeCreated": 23045.865962, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:22,782" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638782.9815366, - "msecs": 981.0, - "relativeCreated": 23244.675573, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 60 ()", - "asctime": "2025-08-19 23:26:22,981" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638782.9816751, - "msecs": 981.0, - "relativeCreated": 23244.814183, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:22,981" - } - ], - "time_consumption": 8.20159912109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638782.981868, - "msecs": 981.0, - "relativeCreated": 23245.007061, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 80", - "asctime": "2025-08-19 23:26:22,981", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638783.1829424, - "msecs": 182.0, - "relativeCreated": 23446.081565, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:23,182", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638782.9820578, - "msecs": 982.0, - "relativeCreated": 23245.19666, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:22,982" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.9828112, - "msecs": 982.0, - "relativeCreated": 23245.950036, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:22,982" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638782.9840362, - "msecs": 984.0, - "relativeCreated": 23247.175211, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:22,984" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638783.182718, - "msecs": 182.0, - "relativeCreated": 23445.857061, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 80 ()", - "asctime": "2025-08-19 23:26:23,182" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638783.182854, - "msecs": 182.0, - "relativeCreated": 23445.992978, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:23,182" - } - ], - "time_consumption": 8.845329284667969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638783.1830478, - "msecs": 183.0, - "relativeCreated": 23446.186784, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 100", - "asctime": "2025-08-19 23:26:23,183", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638783.3841841, - "msecs": 384.0, - "relativeCreated": 23647.322952, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:23,384", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638783.1832187, - "msecs": 183.0, - "relativeCreated": 23446.357816, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:23,183" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.184059, - "msecs": 184.0, - "relativeCreated": 23447.197766, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:23,184" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.1852624, - "msecs": 185.0, - "relativeCreated": 23448.401238, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:23,185" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638783.3840003, - "msecs": 384.0, - "relativeCreated": 23647.139225, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 100 ()", - "asctime": "2025-08-19 23:26:23,384" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638783.384135, - "msecs": 384.0, - "relativeCreated": 23647.273819, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:23,384" - } - ], - "time_consumption": 4.9114227294921875e-05 - } - ], - "time_consumption": 1.5069618225097656, - "time_start": "2025-08-19 23:26:21,877", - "time_finished": "2025-08-19 23:26:23,384" - }, - "REQ-0029": { - "name": "__tLogger__", - "msg": "REQ-0029", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638783.3844218, - "msecs": 384.0, - "relativeCreated": 23647.560938, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0029", - "asctime": "2025-08-19 23:26:23,384", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638783.48479, - "msecs": 484.0, - "relativeCreated": 23747.928945, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:23,484", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638783.585856, - "msecs": 585.0, - "relativeCreated": 23848.994983, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:23,585", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638783.4851336, - "msecs": 485.0, - "relativeCreated": 23748.272546, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:23,485" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638783.4854465, - "msecs": 485.0, - "relativeCreated": 23748.585367, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:23,485" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.4875636, - "msecs": 487.0, - "relativeCreated": 23750.70245, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:23,487" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.4879546, - "msecs": 487.0, - "relativeCreated": 23751.093748, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:23,487" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.5291138, - "msecs": 529.0, - "relativeCreated": 23792.252765, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:23,529" - } - ], - "time_consumption": 0.056742191314697266 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638783.6866238, - "msecs": 686.0, - "relativeCreated": 23949.76281, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:23,686", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638783.6864254, - "msecs": 686.0, - "relativeCreated": 23949.564226, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:23,686" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638783.6865706, - "msecs": 686.0, - "relativeCreated": 23949.709673, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:23,686" - } - ], - "time_consumption": 5.316734313964844e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638783.6867354, - "msecs": 686.0, - "relativeCreated": 23949.87449, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 0", - "asctime": "2025-08-19 23:26:23,686", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638783.8878815, - "msecs": 887.0, - "relativeCreated": 24151.020405, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:23,887", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638783.6868849, - "msecs": 686.0, - "relativeCreated": 23950.023834, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 0", - "asctime": "2025-08-19 23:26:23,686" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.6891897, - "msecs": 689.0, - "relativeCreated": 23952.328713, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:23,689" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638783.6894207, - "msecs": 689.0, - "relativeCreated": 23952.559688, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:23,689" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.6900012, - "msecs": 690.0, - "relativeCreated": 23953.140156, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:23,690" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.731597, - "msecs": 731.0, - "relativeCreated": 23994.73611, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:23,731" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638783.8876827, - "msecs": 887.0, - "relativeCreated": 24150.821615, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 0 ()", - "asctime": "2025-08-19 23:26:23,887" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638783.8878286, - "msecs": 887.0, - "relativeCreated": 24150.967534, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:23,887" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638783.8880334, - "msecs": 888.0, - "relativeCreated": 24151.172176, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 2", - "asctime": "2025-08-19 23:26:23,888", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638784.0888128, - "msecs": 88.0, - "relativeCreated": 24351.951854, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:24,088", - "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", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638783.888163, - "msecs": 888.0, - "relativeCreated": 24151.302065, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 2", - "asctime": "2025-08-19 23:26:23,888" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.8904376, - "msecs": 890.0, - "relativeCreated": 24153.576556, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:23,890" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638783.8906796, - "msecs": 890.0, - "relativeCreated": 24153.818619, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:23,890" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.891317, - "msecs": 891.0, - "relativeCreated": 24154.45595, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:23,891" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638783.9326627, - "msecs": 932.0, - "relativeCreated": 24195.801699, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:23,932" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638784.0886333, - "msecs": 88.0, - "relativeCreated": 24351.772255, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 2 ()", - "asctime": "2025-08-19 23:26:24,088" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638784.0887494, - "msecs": 88.0, - "relativeCreated": 24351.888323, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:24,088" - } - ], - "time_consumption": 6.341934204101562e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638784.0889304, - "msecs": 88.0, - "relativeCreated": 24352.069408, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 4", - "asctime": "2025-08-19 23:26:24,088", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638784.2897608, - "msecs": 289.0, - "relativeCreated": 24552.899815, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:24,289", - "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", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.0890403, - "msecs": 89.0, - "relativeCreated": 24352.179351, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 4", - "asctime": "2025-08-19 23:26:24,089" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.090949, - "msecs": 90.0, - "relativeCreated": 24354.088027, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:24,090" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.0911732, - "msecs": 91.0, - "relativeCreated": 24354.312094, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:24,091" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.0916433, - "msecs": 91.0, - "relativeCreated": 24354.782447, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:24,091" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.132596, - "msecs": 132.0, - "relativeCreated": 24395.735075, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:24,132" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638784.2895997, - "msecs": 289.0, - "relativeCreated": 24552.738722, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 4 ()", - "asctime": "2025-08-19 23:26:24,289" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638784.289714, - "msecs": 289.0, - "relativeCreated": 24552.853094, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:24,289" - } - ], - "time_consumption": 4.673004150390625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638784.2898817, - "msecs": 289.0, - "relativeCreated": 24553.020584, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 6", - "asctime": "2025-08-19 23:26:24,289", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638784.4906867, - "msecs": 490.0, - "relativeCreated": 24753.825624, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:24,490", - "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", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.290012, - "msecs": 290.0, - "relativeCreated": 24553.150964, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 6", - "asctime": "2025-08-19 23:26:24,290" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.2917662, - "msecs": 291.0, - "relativeCreated": 24554.905402, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:24,291" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.2920108, - "msecs": 292.0, - "relativeCreated": 24555.149636, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:24,292" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.292438, - "msecs": 292.0, - "relativeCreated": 24555.577064, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:24,292" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.3330283, - "msecs": 333.0, - "relativeCreated": 24596.167273, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:24,333" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638784.4905205, - "msecs": 490.0, - "relativeCreated": 24753.659585, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 6 ()", - "asctime": "2025-08-19 23:26:24,490" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638784.4906397, - "msecs": 490.0, - "relativeCreated": 24753.778514, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:24,490" - } - ], - "time_consumption": 4.696846008300781e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638784.4907827, - "msecs": 490.0, - "relativeCreated": 24753.921675, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 8", - "asctime": "2025-08-19 23:26:24,490", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638784.6915655, - "msecs": 691.0, - "relativeCreated": 24954.704575, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:24,691", - "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", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.4909244, - "msecs": 490.0, - "relativeCreated": 24754.063407, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 8", - "asctime": "2025-08-19 23:26:24,490" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.492626, - "msecs": 492.0, - "relativeCreated": 24755.764814, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:24,492" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.4928198, - "msecs": 492.0, - "relativeCreated": 24755.958679, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:24,492" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.4933507, - "msecs": 493.0, - "relativeCreated": 24756.489611, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:24,493" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.5341268, - "msecs": 534.0, - "relativeCreated": 24797.265968, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:24,534" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638784.6913636, - "msecs": 691.0, - "relativeCreated": 24954.502654, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 8 ()", - "asctime": "2025-08-19 23:26:24,691" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638784.6915047, - "msecs": 691.0, - "relativeCreated": 24954.643752, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:24,691" - } - ], - "time_consumption": 6.079673767089844e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638784.6916788, - "msecs": 691.0, - "relativeCreated": 24954.817804, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/main_light to 10", - "asctime": "2025-08-19 23:26:24,691", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638784.8924217, - "msecs": 892.0, - "relativeCreated": 25155.560645, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:24,892", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.6917994, - "msecs": 691.0, - "relativeCreated": 24954.938226, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:24,691" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.6940594, - "msecs": 694.0, - "relativeCreated": 24957.198298, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:24,694" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.6944325, - "msecs": 694.0, - "relativeCreated": 24957.571405, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:24,694" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.6952074, - "msecs": 695.0, - "relativeCreated": 24958.34639, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:24,695" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638784.7360861, - "msecs": 736.0, - "relativeCreated": 24999.224916, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:24,736" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638784.8922586, - "msecs": 892.0, - "relativeCreated": 25155.397474, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/main_light): 10 ()", - "asctime": "2025-08-19 23:26:24,892" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638784.8923736, - "msecs": 892.0, - "relativeCreated": 25155.512562, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:24,892" - } - ], - "time_consumption": 4.8160552978515625e-05 - } - ], - "time_consumption": 1.5079998970031738, - "time_start": "2025-08-19 23:26:23,384", - "time_finished": "2025-08-19 23:26:24,892" - }, - "REQ-0030": { - "name": "__tLogger__", - "msg": "REQ-0030", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638784.8926413, - "msecs": 892.0, - "relativeCreated": 25155.780288, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0030", - "asctime": "2025-08-19 23:26:24,892", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638784.992836, - "msecs": 992.0, - "relativeCreated": 25255.975125, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:24,992", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638785.0932176, - "msecs": 93.0, - "relativeCreated": 25356.356527, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:25,093", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638784.992978, - "msecs": 992.0, - "relativeCreated": 25256.117194, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:24,992" - } - ], - "time_consumption": 0.10023951530456543 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638785.1936915, - "msecs": 193.0, - "relativeCreated": 25456.830418, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:25,193", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638785.1936107, - "msecs": 193.0, - "relativeCreated": 25456.749812, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:25,193" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638785.1936731, - "msecs": 193.0, - "relativeCreated": 25456.812215, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:25,193" - } - ], - "time_consumption": 1.8358230590820312e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638785.1937428, - "msecs": 193.0, - "relativeCreated": 25456.881821, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 0", - "asctime": "2025-08-19 23:26:25,193", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638785.394355, - "msecs": 394.0, - "relativeCreated": 25657.493945, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:25,394", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638785.1938097, - "msecs": 193.0, - "relativeCreated": 25456.94868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:25,193" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.1941483, - "msecs": 194.0, - "relativeCreated": 25457.287325, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:25,194" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.194647, - "msecs": 194.0, - "relativeCreated": 25457.786013, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:25,194" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638785.3941689, - "msecs": 394.0, - "relativeCreated": 25657.307845, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 0 ()", - "asctime": "2025-08-19 23:26:25,394" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638785.394305, - "msecs": 394.0, - "relativeCreated": 25657.444011, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:25,394" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638785.3944657, - "msecs": 394.0, - "relativeCreated": 25657.604777, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 2", - "asctime": "2025-08-19 23:26:25,394", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638785.5953395, - "msecs": 595.0, - "relativeCreated": 25858.478508, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:25,595", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638785.394636, - "msecs": 394.0, - "relativeCreated": 25657.775057, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:25,394" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.3955235, - "msecs": 395.0, - "relativeCreated": 25658.662713, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:25,395" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.3969114, - "msecs": 396.0, - "relativeCreated": 25660.050475, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:25,396" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638785.5952268, - "msecs": 595.0, - "relativeCreated": 25858.365864, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 2 ()", - "asctime": "2025-08-19 23:26:25,595" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638785.595304, - "msecs": 595.0, - "relativeCreated": 25858.44298, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:25,595" - } - ], - "time_consumption": 3.552436828613281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638785.5953946, - "msecs": 595.0, - "relativeCreated": 25858.533648, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 4", - "asctime": "2025-08-19 23:26:25,595", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638785.795964, - "msecs": 795.0, - "relativeCreated": 26059.102904, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:25,795", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638785.595482, - "msecs": 595.0, - "relativeCreated": 25858.621096, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:25,595" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.5958486, - "msecs": 595.0, - "relativeCreated": 25858.987421, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:25,595" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.5963879, - "msecs": 596.0, - "relativeCreated": 25859.526782, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:25,596" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638785.795838, - "msecs": 795.0, - "relativeCreated": 26058.977305, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 4 ()", - "asctime": "2025-08-19 23:26:25,795" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638785.7959337, - "msecs": 795.0, - "relativeCreated": 26059.072601, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:25,795" - } - ], - "time_consumption": 3.0279159545898438e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638785.7960289, - "msecs": 796.0, - "relativeCreated": 26059.167982, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 6", - "asctime": "2025-08-19 23:26:25,796", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638785.9967341, - "msecs": 996.0, - "relativeCreated": 26259.873308, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:25,996", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638785.7961206, - "msecs": 796.0, - "relativeCreated": 26059.259545, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:25,796" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.7966223, - "msecs": 796.0, - "relativeCreated": 26059.761344, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:25,796" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.7974257, - "msecs": 797.0, - "relativeCreated": 26060.564586, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:25,797" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638785.9966576, - "msecs": 996.0, - "relativeCreated": 26259.796629, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 6 ()", - "asctime": "2025-08-19 23:26:25,996" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638785.9967163, - "msecs": 996.0, - "relativeCreated": 26259.855183, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:25,996" - } - ], - "time_consumption": 1.7881393432617188e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638785.9967773, - "msecs": 996.0, - "relativeCreated": 26259.916193, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 8", - "asctime": "2025-08-19 23:26:25,996", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638786.1974213, - "msecs": 197.0, - "relativeCreated": 26460.560308, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:26,197", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638785.996869, - "msecs": 996.0, - "relativeCreated": 26260.008121, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:25,996" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.99734, - "msecs": 997.0, - "relativeCreated": 26260.479016, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:25,997" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638785.9980648, - "msecs": 998.0, - "relativeCreated": 26261.203553, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:25,998" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638786.1972342, - "msecs": 197.0, - "relativeCreated": 26460.373156, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 8 ()", - "asctime": "2025-08-19 23:26:26,197" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638786.1973624, - "msecs": 197.0, - "relativeCreated": 26460.50135, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:26,197" - } - ], - "time_consumption": 5.888938903808594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638786.1975245, - "msecs": 197.0, - "relativeCreated": 26460.663488, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/main_light to 10", - "asctime": "2025-08-19 23:26:26,197", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638786.3983288, - "msecs": 398.0, - "relativeCreated": 26661.467747, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:26,398", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.197672, - "msecs": 197.0, - "relativeCreated": 26460.810926, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:26,197" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.1984026, - "msecs": 198.0, - "relativeCreated": 26461.541665, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:26,198" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.1996036, - "msecs": 199.0, - "relativeCreated": 26462.742544, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:26,199" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638786.3982317, - "msecs": 398.0, - "relativeCreated": 26661.370703, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/main_light): 10 ()", - "asctime": "2025-08-19 23:26:26,398" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638786.3983102, - "msecs": 398.0, - "relativeCreated": 26661.449213, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:26,398" - } - ], - "time_consumption": 1.8596649169921875e-05 - } - ], - "time_consumption": 1.5056874752044678, - "time_start": "2025-08-19 23:26:24,892", - "time_finished": "2025-08-19 23:26:26,398" - }, - "REQ-0031": { - "name": "__tLogger__", - "msg": "REQ-0031", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638786.3984544, - "msecs": 398.0, - "relativeCreated": 26661.593465, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0031", - "asctime": "2025-08-19 23:26:26,398", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638786.498964, - "msecs": 498.0, - "relativeCreated": 26762.102991, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:26,498", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.3985536, - "msecs": 398.0, - "relativeCreated": 26661.69249, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:26,398" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.399048, - "msecs": 399.0, - "relativeCreated": 26662.187096, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:26,399" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.399674, - "msecs": 399.0, - "relativeCreated": 26662.812759, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", - "asctime": "2025-08-19 23:26:26,399" - } - ], - "time_consumption": 0.09929013252258301 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638786.5999424, - "msecs": 599.0, - "relativeCreated": 26863.081435, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:26,599", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.4992511, - "msecs": 499.0, - "relativeCreated": 26762.390129, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:26,499" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 254.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.49956, - "msecs": 499.0, - "relativeCreated": 26762.699113, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 254.0}", - "asctime": "2025-08-19 23:26:26,499" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.501451, - "msecs": 501.0, - "relativeCreated": 26764.590053, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:26,501" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 254.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.5019722, - "msecs": 501.0, - "relativeCreated": 26765.11133, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", - "asctime": "2025-08-19 23:26:26,501" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.54286, - "msecs": 542.0, - "relativeCreated": 26805.998972, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:26,542" - } - ], - "time_consumption": 0.057082414627075195 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638786.7006788, - "msecs": 700.0, - "relativeCreated": 26963.81794, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:26,700", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638786.7004595, - "msecs": 700.0, - "relativeCreated": 26963.598631, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:26,700" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638786.7006023, - "msecs": 700.0, - "relativeCreated": 26963.741433, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:26,700" - } - ], - "time_consumption": 7.653236389160156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638786.700792, - "msecs": 700.0, - "relativeCreated": 26963.931129, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to 0", - "asctime": "2025-08-19 23:26:26,700", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638786.9018347, - "msecs": 901.0, - "relativeCreated": 27164.973676, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:26,901", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.7009532, - "msecs": 700.0, - "relativeCreated": 26964.092442, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 0", - "asctime": "2025-08-19 23:26:26,700" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.7036388, - "msecs": 703.0, - "relativeCreated": 26966.777726, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:26,703" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 1.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.7038794, - "msecs": 703.0, - "relativeCreated": 26967.018386, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 1.0}", - "asctime": "2025-08-19 23:26:26,703" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 1.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.704515, - "msecs": 704.0, - "relativeCreated": 26967.654, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", - "asctime": "2025-08-19 23:26:26,704" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.7455838, - "msecs": 745.0, - "relativeCreated": 27008.722849, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:26,745" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638786.9016259, - "msecs": 901.0, - "relativeCreated": 27164.764788, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/bed_light_di): 0 ()", - "asctime": "2025-08-19 23:26:26,901" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638786.9017823, - "msecs": 901.0, - "relativeCreated": 27164.921167, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/bed_light_di): result = 0 ()", - "asctime": "2025-08-19 23:26:26,901" - } - ], - "time_consumption": 5.245208740234375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638786.9019747, - "msecs": 901.0, - "relativeCreated": 27165.113878, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to 20", - "asctime": "2025-08-19 23:26:26,901", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638787.1026332, - "msecs": 102.0, - "relativeCreated": 27365.772278, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:27,102", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.9021032, - "msecs": 902.0, - "relativeCreated": 27165.242263, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 20", - "asctime": "2025-08-19 23:26:26,902" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.9046211, - "msecs": 904.0, - "relativeCreated": 27167.759952, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:26,904" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 52.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638786.904868, - "msecs": 904.0, - "relativeCreated": 27168.006879, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 52.0}", - "asctime": "2025-08-19 23:26:26,904" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 52.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.9055343, - "msecs": 905.0, - "relativeCreated": 27168.673158, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", - "asctime": "2025-08-19 23:26:26,905" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638786.946363, - "msecs": 946.0, - "relativeCreated": 27209.501813, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:26,946" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638787.1025527, - "msecs": 102.0, - "relativeCreated": 27365.691459, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/bed_light_di): 20 ()", - "asctime": "2025-08-19 23:26:27,102" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638787.1026092, - "msecs": 102.0, - "relativeCreated": 27365.748274, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/bed_light_di): result = 20 ()", - "asctime": "2025-08-19 23:26:27,102" - } - ], - "time_consumption": 2.4080276489257812e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638787.1026785, - "msecs": 102.0, - "relativeCreated": 27365.817641, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to 40", - "asctime": "2025-08-19 23:26:27,102", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638787.3035133, - "msecs": 303.0, - "relativeCreated": 27566.652337, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:27,303", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.1027167, - "msecs": 102.0, - "relativeCreated": 27365.855801, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 40", - "asctime": "2025-08-19 23:26:27,102" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.1037095, - "msecs": 103.0, - "relativeCreated": 27366.848356, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:27,103" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 102.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.103863, - "msecs": 103.0, - "relativeCreated": 27367.001925, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 102.0}", - "asctime": "2025-08-19 23:26:27,103" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 102.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.1041296, - "msecs": 104.0, - "relativeCreated": 27367.268476, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", - "asctime": "2025-08-19 23:26:27,104" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.1454887, - "msecs": 145.0, - "relativeCreated": 27408.627612, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:27,145" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638787.30335, - "msecs": 303.0, - "relativeCreated": 27566.488961, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/bed_light_di): 40 ()", - "asctime": "2025-08-19 23:26:27,303" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638787.3034723, - "msecs": 303.0, - "relativeCreated": 27566.611306, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/bed_light_di): result = 40 ()", - "asctime": "2025-08-19 23:26:27,303" - } - ], - "time_consumption": 4.100799560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638787.3036132, - "msecs": 303.0, - "relativeCreated": 27566.752117, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to 60", - "asctime": "2025-08-19 23:26:27,303", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638787.5041704, - "msecs": 504.0, - "relativeCreated": 27767.309524, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:27,504", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.303706, - "msecs": 303.0, - "relativeCreated": 27566.844864, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 60", - "asctime": "2025-08-19 23:26:27,303" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.3059218, - "msecs": 305.0, - "relativeCreated": 27569.060693, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:27,305" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 153.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.3061686, - "msecs": 306.0, - "relativeCreated": 27569.307617, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 153.0}", - "asctime": "2025-08-19 23:26:27,306" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 153.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.306702, - "msecs": 306.0, - "relativeCreated": 27569.840883, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", - "asctime": "2025-08-19 23:26:27,306" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.347083, - "msecs": 347.0, - "relativeCreated": 27610.221936, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:27,347" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638787.504063, - "msecs": 504.0, - "relativeCreated": 27767.201971, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/bed_light_di): 60 ()", - "asctime": "2025-08-19 23:26:27,504" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638787.5041435, - "msecs": 504.0, - "relativeCreated": 27767.282344, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/bed_light_di): result = 60 ()", - "asctime": "2025-08-19 23:26:27,504" - } - ], - "time_consumption": 2.6941299438476562e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638787.5042357, - "msecs": 504.0, - "relativeCreated": 27767.374685, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to 80", - "asctime": "2025-08-19 23:26:27,504", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638787.7047176, - "msecs": 704.0, - "relativeCreated": 27967.856575, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:27,704", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.5042994, - "msecs": 504.0, - "relativeCreated": 27767.438522, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 80", - "asctime": "2025-08-19 23:26:27,504" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.5053666, - "msecs": 505.0, - "relativeCreated": 27768.505637, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:27,505" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 203.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.5054965, - "msecs": 505.0, - "relativeCreated": 27768.635563, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 203.0}", - "asctime": "2025-08-19 23:26:27,505" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 203.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.505761, - "msecs": 505.0, - "relativeCreated": 27768.900103, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", - "asctime": "2025-08-19 23:26:27,505" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.5484774, - "msecs": 548.0, - "relativeCreated": 27811.616447, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:27,548" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638787.7046454, - "msecs": 704.0, - "relativeCreated": 27967.784366, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/bed_light_di): 80 ()", - "asctime": "2025-08-19 23:26:27,704" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638787.7047002, - "msecs": 704.0, - "relativeCreated": 27967.83909, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/bed_light_di): result = 80 ()", - "asctime": "2025-08-19 23:26:27,704" - } - ], - "time_consumption": 1.7404556274414062e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/sleep/bed_light_di", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638787.7047617, - "msecs": 704.0, - "relativeCreated": 27967.90095, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/sleep/bed_light_di to 100", - "asctime": "2025-08-19 23:26:27,704", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638787.9054377, - "msecs": 905.0, - "relativeCreated": 28168.576785, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffe/ffe/sleep/bed_light_di is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:27,905", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.7048192, - "msecs": 704.0, - "relativeCreated": 27967.958127, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:27,704" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.7056398, - "msecs": 705.0, - "relativeCreated": 27968.778898, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:27,705" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 254.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638787.70579, - "msecs": 705.0, - "relativeCreated": 27968.928845, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 254.0}", - "asctime": "2025-08-19 23:26:27,705" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 254.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.7060628, - "msecs": 706.0, - "relativeCreated": 27969.201786, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", - "asctime": "2025-08-19 23:26:27,706" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638787.7483509, - "msecs": 748.0, - "relativeCreated": 28011.489883, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:27,748" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638787.905249, - "msecs": 905.0, - "relativeCreated": 28168.387998, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffe/ffe/sleep/bed_light_di): 100 ()", - "asctime": "2025-08-19 23:26:27,905" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffe/ffe/sleep/bed_light_di", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638787.9053724, - "msecs": 905.0, - "relativeCreated": 28168.511295, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffe/ffe/sleep/bed_light_di): result = 100 ()", - "asctime": "2025-08-19 23:26:27,905" - } - ], - "time_consumption": 6.532669067382812e-05 - } - ], - "time_consumption": 1.5069832801818848, - "time_start": "2025-08-19 23:26:26,398", - "time_finished": "2025-08-19 23:26:27,905" - }, - "REQ-0032": { - "name": "__tLogger__", - "msg": "REQ-0032", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638787.9056811, - "msecs": 905.0, - "relativeCreated": 28168.820243, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0032", - "asctime": "2025-08-19 23:26:27,905", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638788.0058665, - "msecs": 5.0, - "relativeCreated": 28269.005513, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:28,005", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638788.1063452, - "msecs": 106.0, - "relativeCreated": 28369.484335, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:28,106", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638788.0060194, - "msecs": 6.0, - "relativeCreated": 28269.15822, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:28,006" - } - ], - "time_consumption": 0.1003258228302002 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638788.2069864, - "msecs": 206.0, - "relativeCreated": 28470.125429, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:28,206", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638788.20674, - "msecs": 206.0, - "relativeCreated": 28469.878915, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:28,206" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638788.2069223, - "msecs": 206.0, - "relativeCreated": 28470.061292, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:28,206" - } - ], - "time_consumption": 6.413459777832031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638788.2070959, - "msecs": 207.0, - "relativeCreated": 28470.234825, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/bed_light_di to 0", - "asctime": "2025-08-19 23:26:28,207", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638788.4080002, - "msecs": 408.0, - "relativeCreated": 28671.139171, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:28,408", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 1.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638788.207277, - "msecs": 207.0, - "relativeCreated": 28470.416153, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 1.0}", - "asctime": "2025-08-19 23:26:28,207" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 1.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.208122, - "msecs": 208.0, - "relativeCreated": 28471.261119, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", - "asctime": "2025-08-19 23:26:28,208" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.2094994, - "msecs": 209.0, - "relativeCreated": 28472.638409, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:28,209" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638788.4078057, - "msecs": 407.0, - "relativeCreated": 28670.94459, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): 0 ()", - "asctime": "2025-08-19 23:26:28,407" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638788.4079497, - "msecs": 407.0, - "relativeCreated": 28671.08852, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = 0 ()", - "asctime": "2025-08-19 23:26:28,407" - } - ], - "time_consumption": 5.054473876953125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638788.4080982, - "msecs": 408.0, - "relativeCreated": 28671.237236, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/bed_light_di to 20", - "asctime": "2025-08-19 23:26:28,408", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638788.6088705, - "msecs": 608.0, - "relativeCreated": 28872.009462, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:28,608", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 52.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638788.4082472, - "msecs": 408.0, - "relativeCreated": 28671.38631, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 52.0}", - "asctime": "2025-08-19 23:26:28,408" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 52.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.4089189, - "msecs": 408.0, - "relativeCreated": 28672.057741, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", - "asctime": "2025-08-19 23:26:28,408" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.4101002, - "msecs": 410.0, - "relativeCreated": 28673.239175, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:28,410" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638788.6086872, - "msecs": 608.0, - "relativeCreated": 28871.826068, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): 20 ()", - "asctime": "2025-08-19 23:26:28,608" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638788.6088204, - "msecs": 608.0, - "relativeCreated": 28871.959425, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = 20 ()", - "asctime": "2025-08-19 23:26:28,608" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638788.6089978, - "msecs": 608.0, - "relativeCreated": 28872.136882, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/bed_light_di to 40", - "asctime": "2025-08-19 23:26:28,608", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638788.809976, - "msecs": 809.0, - "relativeCreated": 29073.115059, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:28,809", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 102.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638788.6091638, - "msecs": 609.0, - "relativeCreated": 28872.302699, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 102.0}", - "asctime": "2025-08-19 23:26:28,609" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 102.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.609986, - "msecs": 609.0, - "relativeCreated": 28873.124966, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", - "asctime": "2025-08-19 23:26:28,609" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.6113224, - "msecs": 611.0, - "relativeCreated": 28874.461385, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:28,611" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638788.8097444, - "msecs": 809.0, - "relativeCreated": 29072.883503, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): 40 ()", - "asctime": "2025-08-19 23:26:28,809" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638788.8098779, - "msecs": 809.0, - "relativeCreated": 29073.016848, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = 40 ()", - "asctime": "2025-08-19 23:26:28,809" - } - ], - "time_consumption": 9.822845458984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638788.8100896, - "msecs": 810.0, - "relativeCreated": 29073.22853, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/bed_light_di to 60", - "asctime": "2025-08-19 23:26:28,810", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638789.0110958, - "msecs": 11.0, - "relativeCreated": 29274.234777, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:29,011", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 153.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638788.8102326, - "msecs": 810.0, - "relativeCreated": 29073.37167, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 153.0}", - "asctime": "2025-08-19 23:26:28,810" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 153.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.8111854, - "msecs": 811.0, - "relativeCreated": 29074.324371, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", - "asctime": "2025-08-19 23:26:28,811" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638788.8124459, - "msecs": 812.0, - "relativeCreated": 29075.584968, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:28,812" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638789.0108786, - "msecs": 10.0, - "relativeCreated": 29274.017428, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): 60 ()", - "asctime": "2025-08-19 23:26:29,010" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638789.011047, - "msecs": 11.0, - "relativeCreated": 29274.18592, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = 60 ()", - "asctime": "2025-08-19 23:26:29,011" - } - ], - "time_consumption": 4.887580871582031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638789.0112026, - "msecs": 11.0, - "relativeCreated": 29274.341451, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/bed_light_di to 80", - "asctime": "2025-08-19 23:26:29,011", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638789.2119477, - "msecs": 211.0, - "relativeCreated": 29475.086728, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:29,211", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 203.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.01137, - "msecs": 11.0, - "relativeCreated": 29274.508946, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 203.0}", - "asctime": "2025-08-19 23:26:29,011" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 203.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.0122972, - "msecs": 12.0, - "relativeCreated": 29275.436167, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", - "asctime": "2025-08-19 23:26:29,012" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.013587, - "msecs": 13.0, - "relativeCreated": 29276.725921, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:29,013" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638789.2118156, - "msecs": 211.0, - "relativeCreated": 29474.954759, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): 80 ()", - "asctime": "2025-08-19 23:26:29,211" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638789.2119248, - "msecs": 211.0, - "relativeCreated": 29475.063709, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = 80 ()", - "asctime": "2025-08-19 23:26:29,211" - } - ], - "time_consumption": 2.288818359375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638789.212005, - "msecs": 212.0, - "relativeCreated": 29475.143976, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffe/ffe/sleep/bed_light_di to 100", - "asctime": "2025-08-19 23:26:29,212", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/sleep/bed_light_di is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638789.4132876, - "msecs": 413.0, - "relativeCreated": 29676.426591, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/sleep/bed_light_di is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:29,413", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 254.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.2124386, - "msecs": 212.0, - "relativeCreated": 29475.577547, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 254.0}", - "asctime": "2025-08-19 23:26:29,212" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 254.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.212856, - "msecs": 212.0, - "relativeCreated": 29475.995081, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", - "asctime": "2025-08-19 23:26:29,212" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.2134125, - "msecs": 213.0, - "relativeCreated": 29476.551625, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:29,213" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638789.4131055, - "msecs": 413.0, - "relativeCreated": 29676.244506, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/sleep/bed_light_di): 100 ()", - "asctime": "2025-08-19 23:26:29,413" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/sleep/bed_light_di", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638789.4132395, - "msecs": 413.0, - "relativeCreated": 29676.378461, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/sleep/bed_light_di): result = 100 ()", - "asctime": "2025-08-19 23:26:29,413" - } - ], - "time_consumption": 4.8160552978515625e-05 - } - ], - "time_consumption": 1.5076065063476562, - "time_start": "2025-08-19 23:26:27,905", - "time_finished": "2025-08-19 23:26:29,413" - }, - "REQ-0041": { - "name": "__tLogger__", - "msg": "REQ-0041", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638789.4135432, - "msecs": 413.0, - "relativeCreated": 29676.682066, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0041", - "asctime": "2025-08-19 23:26:29,413", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638789.5142255, - "msecs": 514.0, - "relativeCreated": 29777.364491, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:29,514", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.4136686, - "msecs": 413.0, - "relativeCreated": 29676.807689, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:29,413" - }, - { - "name": "smart_brain.devices.shellies.ffe.diningroom.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638789.4139292, - "msecs": 413.0, - "relativeCreated": 29677.068152, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:29,413" - } - ], - "time_consumption": 0.1002962589263916 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638789.614947, - "msecs": 614.0, - "relativeCreated": 29878.08609, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:29,614", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638789.6147077, - "msecs": 614.0, - "relativeCreated": 29877.846811, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:29,614" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638789.6148684, - "msecs": 614.0, - "relativeCreated": 29878.007485, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:29,614" - } - ], - "time_consumption": 7.867813110351562e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/diningroom/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638789.6150544, - "msecs": 615.0, - "relativeCreated": 29878.193279, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/diningroom/main_light to True", - "asctime": "2025-08-19 23:26:29,615", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638789.8156695, - "msecs": 815.0, - "relativeCreated": 30078.808556, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.diningroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:29,815", - "moduleLogger": [ - { - "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/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.6151545, - "msecs": 615.0, - "relativeCreated": 29878.293353, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:29,615" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0/command", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.6177602, - "msecs": 617.0, - "relativeCreated": 29880.89918, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:29,617" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.6179967, - "msecs": 617.0, - "relativeCreated": 29881.135706, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:29,617" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.618538, - "msecs": 618.0, - "relativeCreated": 29881.677039, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:29,618" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.660449, - "msecs": 660.0, - "relativeCreated": 29923.58797, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:29,660" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.6606283, - "msecs": 660.0, - "relativeCreated": 29923.767341, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:29,660" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.660882, - "msecs": 660.0, - "relativeCreated": 29924.020988, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:29,660" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.6613553, - "msecs": 661.0, - "relativeCreated": 29924.494231, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:29,661" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.702538, - "msecs": 702.0, - "relativeCreated": 29965.677044, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:29,702" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.diningroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638789.8155842, - "msecs": 815.0, - "relativeCreated": 30078.723273, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.diningroom)): True ()", - "asctime": "2025-08-19 23:26:29,815" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.diningroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638789.8156507, - "msecs": 815.0, - "relativeCreated": 30078.789698, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.diningroom)): result = True ()", - "asctime": "2025-08-19 23:26:29,815" - } - ], - "time_consumption": 1.8835067749023438e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/diningroom/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638789.8157248, - "msecs": 815.0, - "relativeCreated": 30078.863927, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/diningroom/main_light to False", - "asctime": "2025-08-19 23:26:29,815", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638790.0166261, - "msecs": 16.0, - "relativeCreated": 30279.76526, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.diningroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:30,016", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.8157682, - "msecs": 815.0, - "relativeCreated": 30078.9072, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:29,815" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.8166177, - "msecs": 816.0, - "relativeCreated": 30079.756846, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:29,816" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.816729, - "msecs": 816.0, - "relativeCreated": 30079.868129, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:29,816" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.8169491, - "msecs": 816.0, - "relativeCreated": 30080.088166, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:29,816" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.8590672, - "msecs": 859.0, - "relativeCreated": 30122.20609, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:29,859" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638789.859276, - "msecs": 859.0, - "relativeCreated": 30122.415144, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:29,859" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.859587, - "msecs": 859.0, - "relativeCreated": 30122.72615, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:29,859" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.8602302, - "msecs": 860.0, - "relativeCreated": 30123.369277, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:29,860" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638789.9015367, - "msecs": 901.0, - "relativeCreated": 30164.675822, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:29,901" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.diningroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638790.0164165, - "msecs": 16.0, - "relativeCreated": 30279.555608, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.diningroom)): False ()", - "asctime": "2025-08-19 23:26:30,016" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.diningroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638790.0165546, - "msecs": 16.0, - "relativeCreated": 30279.693599, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.diningroom)): result = False ()", - "asctime": "2025-08-19 23:26:30,016" - } - ], - "time_consumption": 7.152557373046875e-05 - } - ], - "time_consumption": 0.6030828952789307, - "time_start": "2025-08-19 23:26:29,413", - "time_finished": "2025-08-19 23:26:30,016" - }, - "REQ-0042": { - "name": "__tLogger__", - "msg": "REQ-0042", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638790.0168707, - "msecs": 16.0, - "relativeCreated": 30280.00976, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0042", - "asctime": "2025-08-19 23:26:30,016", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638790.1173851, - "msecs": 117.0, - "relativeCreated": 30380.524323, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:30,117", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.0170462, - "msecs": 17.0, - "relativeCreated": 30280.185235, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:30,017" - } - ], - "time_consumption": 0.10033893585205078 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638790.2181005, - "msecs": 218.0, - "relativeCreated": 30481.239467, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:30,218", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638790.2178633, - "msecs": 217.0, - "relativeCreated": 30481.002448, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:30,217" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638790.2180488, - "msecs": 218.0, - "relativeCreated": 30481.187828, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:30,218" - } - ], - "time_consumption": 5.173683166503906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.diningroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638790.218206, - "msecs": 218.0, - "relativeCreated": 30481.344881, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.diningroom) to True", - "asctime": "2025-08-19 23:26:30,218", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/diningroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638790.419169, - "msecs": 419.0, - "relativeCreated": 30682.308009, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/diningroom/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:30,419", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.218319, - "msecs": 218.0, - "relativeCreated": 30481.457922, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:30,218" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.2192981, - "msecs": 219.0, - "relativeCreated": 30482.436977, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:30,219" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.2212026, - "msecs": 221.0, - "relativeCreated": 30484.341808, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:30,221" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.22138, - "msecs": 221.0, - "relativeCreated": 30484.519189, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:30,221" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.221649, - "msecs": 221.0, - "relativeCreated": 30484.787773, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:30,221" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.2222214, - "msecs": 222.0, - "relativeCreated": 30485.360212, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:30,222" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.2646732, - "msecs": 264.0, - "relativeCreated": 30527.812181, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:30,264" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638790.418969, - "msecs": 418.0, - "relativeCreated": 30682.107739, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/diningroom/main_light): True ()", - "asctime": "2025-08-19 23:26:30,418" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638790.4191132, - "msecs": 419.0, - "relativeCreated": 30682.252343, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/diningroom/main_light): result = True ()", - "asctime": "2025-08-19 23:26:30,419" - } - ], - "time_consumption": 5.5789947509765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.diningroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638790.4192863, - "msecs": 419.0, - "relativeCreated": 30682.425269, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.diningroom) to False", - "asctime": "2025-08-19 23:26:30,419", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/diningroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638790.6204357, - "msecs": 620.0, - "relativeCreated": 30883.574605, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/diningroom/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:30,620", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.4194198, - "msecs": 419.0, - "relativeCreated": 30682.558718, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:30,419" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.4204476, - "msecs": 420.0, - "relativeCreated": 30683.58642, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:30,420" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.422165, - "msecs": 422.0, - "relativeCreated": 30685.304096, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:30,422" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.4223654, - "msecs": 422.0, - "relativeCreated": 30685.504412, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:30,422" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.422677, - "msecs": 422.0, - "relativeCreated": 30685.816012, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:30,422" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.4231381, - "msecs": 423.0, - "relativeCreated": 30686.277158, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:30,423" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.4652326, - "msecs": 465.0, - "relativeCreated": 30728.371652, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:30,465" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638790.6202397, - "msecs": 620.0, - "relativeCreated": 30883.378729, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/diningroom/main_light): False ()", - "asctime": "2025-08-19 23:26:30,620" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638790.6203835, - "msecs": 620.0, - "relativeCreated": 30883.522387, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/diningroom/main_light): result = False ()", - "asctime": "2025-08-19 23:26:30,620" - } - ], - "time_consumption": 5.221366882324219e-05 - } - ], - "time_consumption": 0.603564977645874, - "time_start": "2025-08-19 23:26:30,016", - "time_finished": "2025-08-19 23:26:30,620" - }, - "REQ-0043": { - "name": "__tLogger__", - "msg": "REQ-0043", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638790.620714, - "msecs": 620.0, - "relativeCreated": 30883.853069, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0043", - "asctime": "2025-08-19 23:26:30,620", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638790.7213564, - "msecs": 721.0, - "relativeCreated": 30984.495173, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:30,721", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.6208618, - "msecs": 620.0, - "relativeCreated": 30884.000651, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", - "asctime": "2025-08-19 23:26:30,620" - } - ], - "time_consumption": 0.1004946231842041 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638790.822152, - "msecs": 822.0, - "relativeCreated": 31085.290962, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:30,822", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638790.8219557, - "msecs": 821.0, - "relativeCreated": 31085.094531, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:30,821" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638790.8220983, - "msecs": 822.0, - "relativeCreated": 31085.237228, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:30,822" - } - ], - "time_consumption": 5.364418029785156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/diningroom/floorlamp", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638790.8222697, - "msecs": 822.0, - "relativeCreated": 31085.408748, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/diningroom/floorlamp to True", - "asctime": "2025-08-19 23:26:30,822", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638791.0231204, - "msecs": 23.0, - "relativeCreated": 31286.259489, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:31,023", - "moduleLogger": [ - { - "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/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.822405, - "msecs": 822.0, - "relativeCreated": 31085.544142, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload true", - "asctime": "2025-08-19 23:26:30,822" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.8249328, - "msecs": 824.0, - "relativeCreated": 31088.071792, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:30,824" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638790.8251495, - "msecs": 825.0, - "relativeCreated": 31088.288444, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:30,825" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.8259284, - "msecs": 825.0, - "relativeCreated": 31089.067436, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:30,825" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638790.8664248, - "msecs": 866.0, - "relativeCreated": 31129.563717, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:30,866" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638791.022882, - "msecs": 22.0, - "relativeCreated": 31286.021055, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Floor Light (ffe.diningroom)): True ()", - "asctime": "2025-08-19 23:26:31,022" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638791.0230305, - "msecs": 23.0, - "relativeCreated": 31286.169639, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Floor Light (ffe.diningroom)): result = True ()", - "asctime": "2025-08-19 23:26:31,023" - } - ], - "time_consumption": 8.988380432128906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/diningroom/floorlamp", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638791.0232344, - "msecs": 23.0, - "relativeCreated": 31286.373241, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/diningroom/floorlamp to False", - "asctime": "2025-08-19 23:26:31,023", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638791.2239678, - "msecs": 223.0, - "relativeCreated": 31487.106624, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:31,223", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638791.0233421, - "msecs": 23.0, - "relativeCreated": 31286.481202, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", - "asctime": "2025-08-19 23:26:31,023" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638791.025189, - "msecs": 25.0, - "relativeCreated": 31288.327832, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:31,025" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638791.0254085, - "msecs": 25.0, - "relativeCreated": 31288.547523, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:31,025" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638791.0259695, - "msecs": 25.0, - "relativeCreated": 31289.108531, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:31,025" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638791.0668507, - "msecs": 66.0, - "relativeCreated": 31329.989439, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:31,066" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638791.223856, - "msecs": 223.0, - "relativeCreated": 31486.994996, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Floor Light (ffe.diningroom)): False ()", - "asctime": "2025-08-19 23:26:31,223" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638791.2239437, - "msecs": 223.0, - "relativeCreated": 31487.082604, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Floor Light (ffe.diningroom)): result = False ()", - "asctime": "2025-08-19 23:26:31,223" - } - ], - "time_consumption": 2.4080276489257812e-05 - } - ], - "time_consumption": 0.6032538414001465, - "time_start": "2025-08-19 23:26:30,620", - "time_finished": "2025-08-19 23:26:31,223" - }, - "REQ-0044": { - "name": "__tLogger__", - "msg": "REQ-0044", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638791.2241268, - "msecs": 224.0, - "relativeCreated": 31487.26582, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0044", - "asctime": "2025-08-19 23:26:31,224", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638791.3246238, - "msecs": 324.0, - "relativeCreated": 31587.762989, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:31,324", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638791.2241962, - "msecs": 224.0, - "relativeCreated": 31487.335206, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", - "asctime": "2025-08-19 23:26:31,224" - } - ], - "time_consumption": 0.10042762756347656 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638791.42531, - "msecs": 425.0, - "relativeCreated": 31688.448999, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:31,425", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638791.4251127, - "msecs": 425.0, - "relativeCreated": 31688.251922, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:31,425" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638791.4252567, - "msecs": 425.0, - "relativeCreated": 31688.395617, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:31,425" - } - ], - "time_consumption": 5.316734313964844e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Powerplug Floor Light (ffe.diningroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638791.4254215, - "msecs": 425.0, - "relativeCreated": 31688.560674, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Powerplug Floor Light (ffe.diningroom) to True", - "asctime": "2025-08-19 23:26:31,425", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/diningroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638791.6263747, - "msecs": 626.0, - "relativeCreated": 31889.513669, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/diningroom/floorlamp is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:31,626", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638791.42555, - "msecs": 425.0, - "relativeCreated": 31688.689034, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:31,425" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638791.4267433, - "msecs": 426.0, - "relativeCreated": 31689.882238, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:31,426" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638791.4281006, - "msecs": 428.0, - "relativeCreated": 31691.239656, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:31,428" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/floorlamp", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638791.6261923, - "msecs": 626.0, - "relativeCreated": 31889.331305, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/diningroom/floorlamp): True ()", - "asctime": "2025-08-19 23:26:31,626" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/floorlamp", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638791.6263268, - "msecs": 626.0, - "relativeCreated": 31889.465787, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/diningroom/floorlamp): result = True ()", - "asctime": "2025-08-19 23:26:31,626" - } - ], - "time_consumption": 4.792213439941406e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Powerplug Floor Light (ffe.diningroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638791.6264822, - "msecs": 626.0, - "relativeCreated": 31889.621181, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Powerplug Floor Light (ffe.diningroom) to False", - "asctime": "2025-08-19 23:26:31,626", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/diningroom/floorlamp is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638791.8275301, - "msecs": 827.0, - "relativeCreated": 32090.669191, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/diningroom/floorlamp is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:31,827", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638791.626602, - "msecs": 626.0, - "relativeCreated": 31889.741058, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:31,626" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638791.6276004, - "msecs": 627.0, - "relativeCreated": 31890.73949, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:31,627" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638791.629287, - "msecs": 629.0, - "relativeCreated": 31892.425996, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:31,629" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/floorlamp", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638791.8273342, - "msecs": 827.0, - "relativeCreated": 32090.47319, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/diningroom/floorlamp): False ()", - "asctime": "2025-08-19 23:26:31,827" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/floorlamp", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638791.8274772, - "msecs": 827.0, - "relativeCreated": 32090.61628, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/diningroom/floorlamp): result = False ()", - "asctime": "2025-08-19 23:26:31,827" - } - ], - "time_consumption": 5.2928924560546875e-05 - } - ], - "time_consumption": 0.6034033298492432, - "time_start": "2025-08-19 23:26:31,224", - "time_finished": "2025-08-19 23:26:31,827" - }, - "REQ-0045": { - "name": "__tLogger__", - "msg": "REQ-0045", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638791.8277762, - "msecs": 827.0, - "relativeCreated": 32090.915149, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0045", - "asctime": "2025-08-19 23:26:31,827", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638791.9282916, - "msecs": 928.0, - "relativeCreated": 32191.430639, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:31,928", - "moduleLogger": [ - { - "name": "smart_brain.devices.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638791.8279467, - "msecs": 827.0, - "relativeCreated": 32091.085835, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:26:31,827" - } - ], - "time_consumption": 0.10034489631652832 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638792.0290236, - "msecs": 29.0, - "relativeCreated": 32292.162741, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:32,029", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638792.0287974, - "msecs": 28.0, - "relativeCreated": 32291.936523, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:32,028" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638792.028967, - "msecs": 28.0, - "relativeCreated": 32292.105904, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:32,028" - } - ], - "time_consumption": 5.6743621826171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.diningroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638792.0291238, - "msecs": 29.0, - "relativeCreated": 32292.262938, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.diningroom) to True", - "asctime": "2025-08-19 23:26:32,029", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638792.2301984, - "msecs": 230.0, - "relativeCreated": 32493.337355, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:32,230", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.029238, - "msecs": 29.0, - "relativeCreated": 32292.377109, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:32,029" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.030215, - "msecs": 30.0, - "relativeCreated": 32293.35396, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:32,030" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.0320175, - "msecs": 32.0, - "relativeCreated": 32295.156487, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:32,032" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.0322063, - "msecs": 32.0, - "relativeCreated": 32295.34544, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:32,032" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.0325413, - "msecs": 32.0, - "relativeCreated": 32295.680289, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:32,032" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.0331037, - "msecs": 33.0, - "relativeCreated": 32296.24265, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:32,033" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.0753176, - "msecs": 75.0, - "relativeCreated": 32338.456484, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2025-08-19 23:26:32,075" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638792.2300014, - "msecs": 230.0, - "relativeCreated": 32493.140439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Floor Light (ffe.diningroom)): True ()", - "asctime": "2025-08-19 23:26:32,230" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638792.2301455, - "msecs": 230.0, - "relativeCreated": 32493.284588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Floor Light (ffe.diningroom)): result = True ()", - "asctime": "2025-08-19 23:26:32,230" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.diningroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638792.23031, - "msecs": 230.0, - "relativeCreated": 32493.448951, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.diningroom) to False", - "asctime": "2025-08-19 23:26:32,230", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638792.4313602, - "msecs": 431.0, - "relativeCreated": 32694.499184, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Floor Light (ffe.diningroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:32,431", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.2304478, - "msecs": 230.0, - "relativeCreated": 32493.586991, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:32,230" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/diningroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.2315147, - "msecs": 231.0, - "relativeCreated": 32494.653735, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:32,231" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.232957, - "msecs": 232.0, - "relativeCreated": 32496.096016, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:32,232" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.2331605, - "msecs": 233.0, - "relativeCreated": 32496.299479, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:32,233" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.2334673, - "msecs": 233.0, - "relativeCreated": 32496.606405, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:32,233" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/floor_light", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.2339447, - "msecs": 233.0, - "relativeCreated": 32497.083506, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:32,233" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.274576, - "msecs": 274.0, - "relativeCreated": 32537.714982, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2025-08-19 23:26:32,274" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638792.4311664, - "msecs": 431.0, - "relativeCreated": 32694.305531, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Floor Light (ffe.diningroom)): False ()", - "asctime": "2025-08-19 23:26:32,431" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Floor Light (ffe.diningroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638792.4313076, - "msecs": 431.0, - "relativeCreated": 32694.446428, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Floor Light (ffe.diningroom)): result = False ()", - "asctime": "2025-08-19 23:26:32,431" - } - ], - "time_consumption": 5.269050598144531e-05 - } - ], - "time_consumption": 0.6035840511322021, - "time_start": "2025-08-19 23:26:31,827", - "time_finished": "2025-08-19 23:26:32,431" - }, - "REQ-0046": { - "name": "__tLogger__", - "msg": "REQ-0046", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638792.4316146, - "msecs": 431.0, - "relativeCreated": 32694.753686, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0046", - "asctime": "2025-08-19 23:26:32,431", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638792.5321336, - "msecs": 532.0, - "relativeCreated": 32795.272536, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:32,532", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.431756, - "msecs": 431.0, - "relativeCreated": 32694.895121, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload false", - "asctime": "2025-08-19 23:26:32,431" - } - ], - "time_consumption": 0.10037755966186523 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638792.6328878, - "msecs": 632.0, - "relativeCreated": 32896.026791, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:32,632", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638792.6326761, - "msecs": 632.0, - "relativeCreated": 32895.815198, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:32,632" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638792.6328113, - "msecs": 632.0, - "relativeCreated": 32895.950339, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:32,632" - } - ], - "time_consumption": 7.653236389160156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/diningroom/garland", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638792.6330204, - "msecs": 633.0, - "relativeCreated": 32896.159329, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/diningroom/garland to True", - "asctime": "2025-08-19 23:26:32,633", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Garland (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638792.834145, - "msecs": 834.0, - "relativeCreated": 33097.284113, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Garland (ffe.diningroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:32,834", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.633129, - "msecs": 633.0, - "relativeCreated": 32896.268093, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload true", - "asctime": "2025-08-19 23:26:32,633" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.6354692, - "msecs": 635.0, - "relativeCreated": 32898.60832, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:32,635" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.6356704, - "msecs": 635.0, - "relativeCreated": 32898.809451, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:32,635" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.6362557, - "msecs": 636.0, - "relativeCreated": 32899.394781, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:32,636" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.6770828, - "msecs": 677.0, - "relativeCreated": 32940.221902, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'true'", - "asctime": "2025-08-19 23:26:32,677" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Garland (ffe.diningroom)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638792.8339508, - "msecs": 833.0, - "relativeCreated": 33097.089652, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Garland (ffe.diningroom)): True ()", - "asctime": "2025-08-19 23:26:32,833" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Garland (ffe.diningroom)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638792.8340921, - "msecs": 834.0, - "relativeCreated": 33097.231073, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Garland (ffe.diningroom)): result = True ()", - "asctime": "2025-08-19 23:26:32,834" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/diningroom/garland", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638792.8342574, - "msecs": 834.0, - "relativeCreated": 33097.396366, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/diningroom/garland to False", - "asctime": "2025-08-19 23:26:32,834", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Powerplug Garland (ffe.diningroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638793.0353441, - "msecs": 35.0, - "relativeCreated": 33298.483067, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Powerplug Garland (ffe.diningroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:33,035", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.834396, - "msecs": 834.0, - "relativeCreated": 33097.53485, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload false", - "asctime": "2025-08-19 23:26:32,834" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.8369226, - "msecs": 836.0, - "relativeCreated": 33100.061583, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:32,836" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638792.8371375, - "msecs": 837.0, - "relativeCreated": 33100.276379, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:32,837" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.8377068, - "msecs": 837.0, - "relativeCreated": 33100.845885, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:32,837" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638792.8785741, - "msecs": 878.0, - "relativeCreated": 33141.713001, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'false'", - "asctime": "2025-08-19 23:26:32,878" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Powerplug Garland (ffe.diningroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638793.0351064, - "msecs": 35.0, - "relativeCreated": 33298.245192, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Powerplug Garland (ffe.diningroom)): False ()", - "asctime": "2025-08-19 23:26:33,035" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Powerplug Garland (ffe.diningroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638793.0352893, - "msecs": 35.0, - "relativeCreated": 33298.428434, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Powerplug Garland (ffe.diningroom)): result = False ()", - "asctime": "2025-08-19 23:26:33,035" - } - ], - "time_consumption": 5.4836273193359375e-05 - } - ], - "time_consumption": 0.6037294864654541, - "time_start": "2025-08-19 23:26:32,431", - "time_finished": "2025-08-19 23:26:33,035" - }, - "REQ-0047": { - "name": "__tLogger__", - "msg": "REQ-0047", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638793.0356197, - "msecs": 35.0, - "relativeCreated": 33298.75878, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0047", - "asctime": "2025-08-19 23:26:33,035", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638793.1362703, - "msecs": 136.0, - "relativeCreated": 33399.409358, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:33,136", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638793.035753, - "msecs": 35.0, - "relativeCreated": 33298.892037, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload false", - "asctime": "2025-08-19 23:26:33,035" - } - ], - "time_consumption": 0.10051727294921875 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638793.236945, - "msecs": 236.0, - "relativeCreated": 33500.083914, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:33,236", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638793.2366948, - "msecs": 236.0, - "relativeCreated": 33499.833862, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:33,236" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638793.2368596, - "msecs": 236.0, - "relativeCreated": 33499.998559, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:33,236" - } - ], - "time_consumption": 8.535385131835938e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Powerplug Garland (ffe.diningroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638793.2370691, - "msecs": 237.0, - "relativeCreated": 33500.208017, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Powerplug Garland (ffe.diningroom) to True", - "asctime": "2025-08-19 23:26:33,237", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/diningroom/garland is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638793.4382243, - "msecs": 438.0, - "relativeCreated": 33701.363511, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/diningroom/garland is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:33,438", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638793.2371974, - "msecs": 237.0, - "relativeCreated": 33500.336385, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:33,237" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.238166, - "msecs": 238.0, - "relativeCreated": 33501.304899, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:33,238" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.2395732, - "msecs": 239.0, - "relativeCreated": 33502.712263, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'true'", - "asctime": "2025-08-19 23:26:33,239" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/garland", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638793.438025, - "msecs": 438.0, - "relativeCreated": 33701.16396, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/diningroom/garland): True ()", - "asctime": "2025-08-19 23:26:33,438" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/garland", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638793.4381702, - "msecs": 438.0, - "relativeCreated": 33701.309194, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/diningroom/garland): result = True ()", - "asctime": "2025-08-19 23:26:33,438" - } - ], - "time_consumption": 5.412101745605469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Powerplug Garland (ffe.diningroom)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638793.4383345, - "msecs": 438.0, - "relativeCreated": 33701.473408, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Powerplug Garland (ffe.diningroom) to False", - "asctime": "2025-08-19 23:26:33,438", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/diningroom/garland is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638793.6391485, - "msecs": 639.0, - "relativeCreated": 33902.287629, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/diningroom/garland is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:33,639", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638793.4384618, - "msecs": 438.0, - "relativeCreated": 33701.600765, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:33,438" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/diningroom/garland", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.4395535, - "msecs": 439.0, - "relativeCreated": 33702.692646, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:33,439" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/garland/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.4410617, - "msecs": 441.0, - "relativeCreated": 33704.200524, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'false'", - "asctime": "2025-08-19 23:26:33,441" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/garland", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638793.639027, - "msecs": 639.0, - "relativeCreated": 33902.166285, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/diningroom/garland): False ()", - "asctime": "2025-08-19 23:26:33,639" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/diningroom/garland", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638793.6391149, - "msecs": 639.0, - "relativeCreated": 33902.253683, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/diningroom/garland): result = False ()", - "asctime": "2025-08-19 23:26:33,639" - } - ], - "time_consumption": 3.361701965332031e-05 - } - ], - "time_consumption": 0.6035287380218506, - "time_start": "2025-08-19 23:26:33,035", - "time_finished": "2025-08-19 23:26:33,639" - }, - "REQ-0061": { - "name": "__tLogger__", - "msg": "REQ-0061", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638793.6393032, - "msecs": 639.0, - "relativeCreated": 33902.442116, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0061", - "asctime": "2025-08-19 23:26:33,639", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638793.7396874, - "msecs": 739.0, - "relativeCreated": 34002.826413, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:33,739", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638793.6394053, - "msecs": 639.0, - "relativeCreated": 33902.544322, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:33,639" - }, - { - "name": "smart_brain.devices.shellies.ffe.kitchen.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638793.6395464, - "msecs": 639.0, - "relativeCreated": 33902.685258, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:33,639" - } - ], - "time_consumption": 0.10014104843139648 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638793.8400137, - "msecs": 840.0, - "relativeCreated": 34103.15283, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:33,840", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638793.8399258, - "msecs": 839.0, - "relativeCreated": 34103.064656, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:33,839" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638793.8399954, - "msecs": 839.0, - "relativeCreated": 34103.134448, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:33,839" - } - ], - "time_consumption": 1.8358230590820312e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/kitchen/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638793.8400683, - "msecs": 840.0, - "relativeCreated": 34103.20732, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/kitchen/main_light to True", - "asctime": "2025-08-19 23:26:33,840", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.kitchen) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638794.0406654, - "msecs": 40.0, - "relativeCreated": 34303.804448, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.kitchen) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:34,040", - "moduleLogger": [ - { - "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/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638793.8401098, - "msecs": 840.0, - "relativeCreated": 34103.248909, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:33,840" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.841082, - "msecs": 841.0, - "relativeCreated": 34104.22123, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:33,841" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638793.841168, - "msecs": 841.0, - "relativeCreated": 34104.306904, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:33,841" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.841392, - "msecs": 841.0, - "relativeCreated": 34104.531089, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:33,841" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_1/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.8830554, - "msecs": 883.0, - "relativeCreated": 34146.194444, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:33,883" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_2/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.8831933, - "msecs": 883.0, - "relativeCreated": 34146.332288, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:33,883" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638793.8832746, - "msecs": 883.0, - "relativeCreated": 34146.413446, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:33,883" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638794.0405772, - "msecs": 40.0, - "relativeCreated": 34303.716398, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.kitchen)): True ()", - "asctime": "2025-08-19 23:26:34,040" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638794.0406477, - "msecs": 40.0, - "relativeCreated": 34303.786588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.kitchen)): result = True ()", - "asctime": "2025-08-19 23:26:34,040" - } - ], - "time_consumption": 1.7642974853515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/kitchen/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638794.0407205, - "msecs": 40.0, - "relativeCreated": 34303.859353, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/kitchen/main_light to False", - "asctime": "2025-08-19 23:26:34,040", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.kitchen) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638794.2414556, - "msecs": 241.0, - "relativeCreated": 34504.594683, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.kitchen) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:34,241", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638794.0407712, - "msecs": 40.0, - "relativeCreated": 34303.910238, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:34,040" - }, - { - "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'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.0418198, - "msecs": 41.0, - "relativeCreated": 34304.958903, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:34,041" - }, - { - "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", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638794.0419168, - "msecs": 41.0, - "relativeCreated": 34305.055809, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:34,041" - }, - { - "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'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.0421538, - "msecs": 42.0, - "relativeCreated": 34305.29282, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:34,042" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.0847173, - "msecs": 84.0, - "relativeCreated": 34347.85633, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:34,084" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638794.241245, - "msecs": 241.0, - "relativeCreated": 34504.384022, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.kitchen)): False ()", - "asctime": "2025-08-19 23:26:34,241" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638794.241406, - "msecs": 241.0, - "relativeCreated": 34504.544886, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.kitchen)): result = False ()", - "asctime": "2025-08-19 23:26:34,241" - } - ], - "time_consumption": 4.9591064453125e-05 - } - ], - "time_consumption": 0.6021523475646973, - "time_start": "2025-08-19 23:26:33,639", - "time_finished": "2025-08-19 23:26:34,241" - }, - "REQ-0062": { - "name": "__tLogger__", - "msg": "REQ-0062", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638794.2416883, - "msecs": 241.0, - "relativeCreated": 34504.82734, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0062", - "asctime": "2025-08-19 23:26:34,241", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638794.3421786, - "msecs": 342.0, - "relativeCreated": 34605.317488, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:34,342", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638794.2418432, - "msecs": 241.0, - "relativeCreated": 34504.982157, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:34,241" - } - ], - "time_consumption": 0.10033535957336426 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638794.4428318, - "msecs": 442.0, - "relativeCreated": 34705.970754, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:34,442", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638794.4426346, - "msecs": 442.0, - "relativeCreated": 34705.773416, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:34,442" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638794.4427752, - "msecs": 442.0, - "relativeCreated": 34705.914341, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:34,442" - } - ], - "time_consumption": 5.650520324707031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.kitchen)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638794.4429584, - "msecs": 442.0, - "relativeCreated": 34706.097217, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.kitchen) to True", - "asctime": "2025-08-19 23:26:34,442", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/kitchen/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638794.6435366, - "msecs": 643.0, - "relativeCreated": 34906.675571, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/kitchen/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:34,643", - "moduleLogger": [ - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638794.4430587, - "msecs": 443.0, - "relativeCreated": 34706.197739, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:34,443" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.444068, - "msecs": 444.0, - "relativeCreated": 34707.206807, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:34,444" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_1/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.4454854, - "msecs": 445.0, - "relativeCreated": 34708.624332, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:34,445" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_2/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.4457803, - "msecs": 445.0, - "relativeCreated": 34708.919139, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:34,445" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.446013, - "msecs": 446.0, - "relativeCreated": 34709.151913, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:34,446" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638794.6434593, - "msecs": 643.0, - "relativeCreated": 34906.598241, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/kitchen/main_light): True ()", - "asctime": "2025-08-19 23:26:34,643" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638794.6435177, - "msecs": 643.0, - "relativeCreated": 34906.65658, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/kitchen/main_light): result = True ()", - "asctime": "2025-08-19 23:26:34,643" - } - ], - "time_consumption": 1.8835067749023438e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.kitchen)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638794.6435816, - "msecs": 643.0, - "relativeCreated": 34906.720723, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.kitchen) to False", - "asctime": "2025-08-19 23:26:34,643", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/kitchen/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638794.8442569, - "msecs": 844.0, - "relativeCreated": 35107.395674, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/kitchen/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:34,844", - "moduleLogger": [ - { - "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", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638794.6436226, - "msecs": 643.0, - "relativeCreated": 34906.76174, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:34,643" - }, - { - "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'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.6440415, - "msecs": 644.0, - "relativeCreated": 34907.180494, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:34,644" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638794.6444592, - "msecs": 644.0, - "relativeCreated": 34907.598277, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:34,644" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638794.8440926, - "msecs": 844.0, - "relativeCreated": 35107.231796, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/kitchen/main_light): False ()", - "asctime": "2025-08-19 23:26:34,844" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638794.8442092, - "msecs": 844.0, - "relativeCreated": 35107.348056, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/kitchen/main_light): result = False ()", - "asctime": "2025-08-19 23:26:34,844" - } - ], - "time_consumption": 4.76837158203125e-05 - } - ], - "time_consumption": 0.6025686264038086, - "time_start": "2025-08-19 23:26:34,241", - "time_finished": "2025-08-19 23:26:34,844" - }, - "REQ-0063": { - "name": "__tLogger__", - "msg": "REQ-0063", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638794.84449, - "msecs": 844.0, - "relativeCreated": 35107.628913, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0063", - "asctime": "2025-08-19 23:26:34,844", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638794.9451895, - "msecs": 945.0, - "relativeCreated": 35208.328368, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:34,945", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638794.8446712, - "msecs": 844.0, - "relativeCreated": 35107.810242, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false", - "asctime": "2025-08-19 23:26:34,844" - }, - { - "name": "smart_brain.devices.shellies.ffe.kitchen.circulation_pump", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638794.844982, - "msecs": 844.0, - "relativeCreated": 35108.121048, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:34,844" - } - ], - "time_consumption": 0.10020756721496582 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638795.0459428, - "msecs": 45.0, - "relativeCreated": 35309.081752, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:35,045", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638795.0456629, - "msecs": 45.0, - "relativeCreated": 35308.802018, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:35,045" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638795.0458415, - "msecs": 45.0, - "relativeCreated": 35308.980313, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:35,045" - } - ], - "time_consumption": 0.00010132789611816406 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/kitchen/circulation_pump", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638795.046068, - "msecs": 46.0, - "relativeCreated": 35309.206934, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/kitchen/circulation_pump to True", - "asctime": "2025-08-19 23:26:35,046", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.kitchen) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638795.2469795, - "msecs": 246.0, - "relativeCreated": 35510.118516, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.kitchen) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:35,246", - "moduleLogger": [ - { - "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/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.0461903, - "msecs": 46.0, - "relativeCreated": 35309.329214, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload true", - "asctime": "2025-08-19 23:26:35,046" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.0487125, - "msecs": 48.0, - "relativeCreated": 35311.851425, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:35,048" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.0489771, - "msecs": 48.0, - "relativeCreated": 35312.116283, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload on", - "asctime": "2025-08-19 23:26:35,048" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.0496633, - "msecs": 49.0, - "relativeCreated": 35312.802157, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:35,049" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.0905945, - "msecs": 90.0, - "relativeCreated": 35353.733455, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'600'", - "asctime": "2025-08-19 23:26:35,090" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.1324065, - "msecs": 132.0, - "relativeCreated": 35395.54555, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:35,132" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.1325653, - "msecs": 132.0, - "relativeCreated": 35395.704227, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:35,132" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.1327736, - "msecs": 132.0, - "relativeCreated": 35395.912605, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'true'", - "asctime": "2025-08-19 23:26:35,132" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.1331968, - "msecs": 133.0, - "relativeCreated": 35396.33576, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:35,133" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_1/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.1747167, - "msecs": 174.0, - "relativeCreated": 35437.855612, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:35,174" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_2/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.1750643, - "msecs": 175.0, - "relativeCreated": 35438.20329, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:35,175" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.1753001, - "msecs": 175.0, - "relativeCreated": 35438.439007, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:35,175" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638795.2467868, - "msecs": 246.0, - "relativeCreated": 35509.925698, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.kitchen)): True ()", - "asctime": "2025-08-19 23:26:35,246" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638795.246929, - "msecs": 246.0, - "relativeCreated": 35510.067829, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.kitchen)): result = True ()", - "asctime": "2025-08-19 23:26:35,246" - } - ], - "time_consumption": 5.054473876953125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/kitchen/circulation_pump", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638795.2470825, - "msecs": 247.0, - "relativeCreated": 35510.221571, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/kitchen/circulation_pump to False", - "asctime": "2025-08-19 23:26:35,247", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.kitchen) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638795.4479125, - "msecs": 447.0, - "relativeCreated": 35711.051524, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.kitchen) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:35,447", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.2472003, - "msecs": 247.0, - "relativeCreated": 35510.339298, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false", - "asctime": "2025-08-19 23:26:35,247" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.2493415, - "msecs": 249.0, - "relativeCreated": 35512.480468, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:35,249" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.249631, - "msecs": 249.0, - "relativeCreated": 35512.76993, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off", - "asctime": "2025-08-19 23:26:35,249" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.2502782, - "msecs": 250.0, - "relativeCreated": 35513.417144, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:35,250" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.2923207, - "msecs": 292.0, - "relativeCreated": 35555.459802, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0'", - "asctime": "2025-08-19 23:26:35,292" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.33259, + "created": 1755888839.332572, "msecs": 332.0, - "relativeCreated": 35595.729055, - "thread": 131449202394816, + "relativeCreated": 1207.381045, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", - "asctime": "2025-08-19 23:26:35,332" + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:53:59,332" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638795.4476724, - "msecs": 447.0, - "relativeCreated": 35710.811251, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.kitchen)): False ()", - "asctime": "2025-08-19 23:26:35,447" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.kitchen)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638795.4478443, - "msecs": 447.0, - "relativeCreated": 35710.983334, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.kitchen)): result = False ()", - "asctime": "2025-08-19 23:26:35,447" - } - ], - "time_consumption": 6.818771362304688e-05 - } - ], - "time_consumption": 0.6034224033355713, - "time_start": "2025-08-19 23:26:34,844", - "time_finished": "2025-08-19 23:26:35,447" - }, - "REQ-0064": { - "name": "__tLogger__", - "msg": "REQ-0064", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638795.4481769, - "msecs": 448.0, - "relativeCreated": 35711.315832, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0064", - "asctime": "2025-08-19 23:26:35,448", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638795.5487332, - "msecs": 548.0, - "relativeCreated": 35811.872093, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:35,548", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.4483876, - "msecs": 448.0, - "relativeCreated": 35711.526655, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:35,448" - } - ], - "time_consumption": 0.10034561157226562 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638795.6494358, - "msecs": 649.0, - "relativeCreated": 35912.574749, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:35,649", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638795.6491427, - "msecs": 649.0, - "relativeCreated": 35912.281801, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:35,649" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638795.6493425, - "msecs": 649.0, - "relativeCreated": 35912.481512, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:35,649" - } - ], - "time_consumption": 9.322166442871094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.kitchen)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638795.6496084, - "msecs": 649.0, - "relativeCreated": 35912.747509, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.kitchen) to True", - "asctime": "2025-08-19 23:26:35,649", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/kitchen/circulation_pump is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638795.8508759, - "msecs": 850.0, - "relativeCreated": 36114.014937, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/kitchen/circulation_pump is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:35,850", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.6497803, - "msecs": 649.0, - "relativeCreated": 35912.919234, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload on", - "asctime": "2025-08-19 23:26:35,649" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.6507611, - "msecs": 650.0, - "relativeCreated": 35913.900237, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:35,650" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.6530764, - "msecs": 653.0, - "relativeCreated": 35916.215404, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'600'", - "asctime": "2025-08-19 23:26:35,653" - }, - { - "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'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.6534498, - "msecs": 653.0, - "relativeCreated": 35916.588702, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:35,653" - }, - { - "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", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.6536322, - "msecs": 653.0, - "relativeCreated": 35916.771154, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:35,653" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.6539686, - "msecs": 653.0, - "relativeCreated": 35917.107593, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'true'", - "asctime": "2025-08-19 23:26:35,653" - }, - { - "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'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.6544516, - "msecs": 654.0, - "relativeCreated": 35917.590745, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:35,654" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.6950681, - "msecs": 695.0, - "relativeCreated": 35958.207289, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:35,695" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.8418012, - "msecs": 841.0, - "relativeCreated": 36104.940221, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:35,841" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.8420594, - "msecs": 842.0, - "relativeCreated": 36105.198314, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:35,842" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.8426893, - "msecs": 842.0, - "relativeCreated": 36105.828208, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:35,842" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/circulation_pump", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638795.8506885, - "msecs": 850.0, - "relativeCreated": 36113.827396, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/kitchen/circulation_pump): True ()", - "asctime": "2025-08-19 23:26:35,850" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/circulation_pump", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638795.8508258, - "msecs": 850.0, - "relativeCreated": 36113.964858, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/kitchen/circulation_pump): result = True ()", - "asctime": "2025-08-19 23:26:35,850" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.kitchen)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638795.8510294, - "msecs": 851.0, - "relativeCreated": 36114.168454, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.kitchen) to False", - "asctime": "2025-08-19 23:26:35,851", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/kitchen/circulation_pump is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638796.05201, - "msecs": 52.0, - "relativeCreated": 36315.148893, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/kitchen/circulation_pump is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:36,052", - "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", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638795.851167, - "msecs": 851.0, - "relativeCreated": 36114.30606, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off", - "asctime": "2025-08-19 23:26:35,851" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.852192, - "msecs": 852.0, - "relativeCreated": 36115.330966, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:35,852" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_1/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.8932707, - "msecs": 893.0, - "relativeCreated": 36156.409908, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:35,893" - }, - { - "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffe/ffe/kitchen/main_light_2/set", - "b'{\"hue_power_on_behavior\": \"recover\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.8934653, - "msecs": 893.0, - "relativeCreated": 36156.604276, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", - "asctime": "2025-08-19 23:26:35,893" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.8935611, - "msecs": 893.0, - "relativeCreated": 36156.70002, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:35,893" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.8936808, - "msecs": 893.0, - "relativeCreated": 36156.819914, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0'", - "asctime": "2025-08-19 23:26:35,893" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638795.89381, - "msecs": 893.0, - "relativeCreated": 36156.948813, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", - "asctime": "2025-08-19 23:26:35,893" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/circulation_pump", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638796.0518324, - "msecs": 51.0, - "relativeCreated": 36314.971444, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/kitchen/circulation_pump): False ()", - "asctime": "2025-08-19 23:26:36,051" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/kitchen/circulation_pump", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638796.0519671, - "msecs": 51.0, - "relativeCreated": 36315.106158, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/kitchen/circulation_pump): result = False ()", - "asctime": "2025-08-19 23:26:36,051" - } - ], - "time_consumption": 4.291534423828125e-05 - } - ], - "time_consumption": 0.6038331985473633, - "time_start": "2025-08-19 23:26:35,448", - "time_finished": "2025-08-19 23:26:36,052" - }, - "REQ-0081": { - "name": "__tLogger__", - "msg": "REQ-0081", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638796.0522256, - "msecs": 52.0, - "relativeCreated": 36315.364503, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0081", - "asctime": "2025-08-19 23:26:36,052", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638796.152847, - "msecs": 152.0, - "relativeCreated": 36415.986056, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:36,152", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638796.0523353, - "msecs": 52.0, - "relativeCreated": 36315.474422, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:36,052" - }, - { - "name": "smart_brain.devices.shellies.ffe.floor.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638796.052546, - "msecs": 52.0, - "relativeCreated": 36315.684971, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:36,052" - } - ], - "time_consumption": 0.10030102729797363 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638796.2533834, - "msecs": 253.0, - "relativeCreated": 36516.522362, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:36,253", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638796.2532747, - "msecs": 253.0, - "relativeCreated": 36516.413717, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:36,253" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638796.2533627, - "msecs": 253.0, - "relativeCreated": 36516.501663, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:36,253" - } - ], - "time_consumption": 2.0742416381835938e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/floor/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638796.253444, - "msecs": 253.0, - "relativeCreated": 36516.582792, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/floor/main_light to True", - "asctime": "2025-08-19 23:26:36,253", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.floor) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638796.4541926, - "msecs": 454.0, - "relativeCreated": 36717.33175, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.floor) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:36,454", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638796.2534928, - "msecs": 253.0, - "relativeCreated": 36516.6317, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:36,253" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.2545147, - "msecs": 254.0, - "relativeCreated": 36517.653805, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:36,254" - }, - { - "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", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638796.254616, - "msecs": 254.0, - "relativeCreated": 36517.755159, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:36,254" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.2548373, - "msecs": 254.0, - "relativeCreated": 36517.976314, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:36,254" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.2970002, - "msecs": 297.0, - "relativeCreated": 36560.139303, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:36,297" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.floor)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638796.4539921, - "msecs": 453.0, - "relativeCreated": 36717.131311, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.floor)): True ()", - "asctime": "2025-08-19 23:26:36,453" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.floor)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638796.4541178, - "msecs": 454.0, - "relativeCreated": 36717.25697, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.floor)): result = True ()", - "asctime": "2025-08-19 23:26:36,454" - } - ], - "time_consumption": 7.486343383789062e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffe/floor/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638796.4543018, - "msecs": 454.0, - "relativeCreated": 36717.44103, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffe/floor/main_light to False", - "asctime": "2025-08-19 23:26:36,454", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffe.floor) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638796.6550953, - "msecs": 655.0, - "relativeCreated": 36918.234298, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffe.floor) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:36,655", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638796.4544086, - "msecs": 454.0, - "relativeCreated": 36717.547693, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:36,454" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.4566877, - "msecs": 456.0, - "relativeCreated": 36719.826672, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:36,456" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638796.45688, - "msecs": 456.0, - "relativeCreated": 36720.019186, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:36,456" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.4575992, - "msecs": 457.0, - "relativeCreated": 36720.738332, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:36,457" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.4991014, - "msecs": 499.0, - "relativeCreated": 36762.240382, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:36,499" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.floor)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638796.6548715, - "msecs": 654.0, - "relativeCreated": 36918.01067, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffe.floor)): False ()", - "asctime": "2025-08-19 23:26:36,654" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffe.floor)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638796.6550412, - "msecs": 655.0, - "relativeCreated": 36918.180212, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffe.floor)): result = False ()", - "asctime": "2025-08-19 23:26:36,655" - } - ], - "time_consumption": 5.412101745605469e-05 - } - ], - "time_consumption": 0.6028697490692139, - "time_start": "2025-08-19 23:26:36,052", - "time_finished": "2025-08-19 23:26:36,655" - }, - "REQ-0082": { - "name": "__tLogger__", - "msg": "REQ-0082", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638796.655343, - "msecs": 655.0, - "relativeCreated": 36918.482222, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0082", - "asctime": "2025-08-19 23:26:36,655", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638796.7558775, - "msecs": 755.0, - "relativeCreated": 37019.016485, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:36,755", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638796.6555262, - "msecs": 655.0, - "relativeCreated": 36918.665224, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffe/floor/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:36,655" - } - ], - "time_consumption": 0.10035133361816406 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638796.8566937, - "msecs": 856.0, - "relativeCreated": 37119.83276, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:36,856", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638796.8564405, - "msecs": 856.0, - "relativeCreated": 37119.579646, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:36,856" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638796.856621, - "msecs": 856.0, - "relativeCreated": 37119.759993, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:36,856" - } - ], - "time_consumption": 7.271766662597656e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.floor)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638796.85682, - "msecs": 856.0, - "relativeCreated": 37119.959342, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.floor) to True", - "asctime": "2025-08-19 23:26:36,856", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638797.0578017, - "msecs": 57.0, - "relativeCreated": 37320.940691, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/floor/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:37,057", - "moduleLogger": [ - { - "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", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638796.8569677, - "msecs": 856.0, - "relativeCreated": 37120.106666, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:36,856" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.8580801, - "msecs": 858.0, - "relativeCreated": 37121.219283, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:36,858" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638796.859539, - "msecs": 859.0, - "relativeCreated": 37122.677882, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:36,859" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/floor/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638797.0577137, - "msecs": 57.0, - "relativeCreated": 37320.852568, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/floor/main_light): True ()", - "asctime": "2025-08-19 23:26:37,057" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/floor/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638797.057783, - "msecs": 57.0, - "relativeCreated": 37320.921818, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/floor/main_light): result = True ()", - "asctime": "2025-08-19 23:26:37,057" - } - ], - "time_consumption": 1.8835067749023438e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffe.floor)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638797.0578437, - "msecs": 57.0, - "relativeCreated": 37320.982712, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffe.floor) to False", - "asctime": "2025-08-19 23:26:37,057", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffe/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638797.258428, - "msecs": 258.0, - "relativeCreated": 37521.567173, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffe/floor/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:37,258", - "moduleLogger": [ - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.0578835, - "msecs": 57.0, - "relativeCreated": 37321.02249, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:37,057" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638797.0586805, - "msecs": 58.0, - "relativeCreated": 37321.819649, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:37,058" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638797.0596762, - "msecs": 59.0, - "relativeCreated": 37322.815275, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:37,059" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffe/floor/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638797.2582507, - "msecs": 258.0, - "relativeCreated": 37521.389742, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffe/floor/main_light): False ()", - "asctime": "2025-08-19 23:26:37,258" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffe/floor/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638797.2583776, - "msecs": 258.0, - "relativeCreated": 37521.516387, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffe/floor/main_light): result = False ()", - "asctime": "2025-08-19 23:26:37,258" - } - ], - "time_consumption": 5.054473876953125e-05 - } - ], - "time_consumption": 0.6030850410461426, - "time_start": "2025-08-19 23:26:36,655", - "time_finished": "2025-08-19 23:26:37,258" - }, - "REQ-0101": { - "name": "__tLogger__", - "msg": "REQ-0101", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638797.2586496, - "msecs": 258.0, - "relativeCreated": 37521.788614, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0101", - "asctime": "2025-08-19 23:26:37,258", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638797.3592267, - "msecs": 359.0, - "relativeCreated": 37622.365654, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:37,359", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.2587829, - "msecs": 258.0, - "relativeCreated": 37521.921906, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:37,258" - }, - { - "name": "smart_brain.devices.shellies.ffw.livingroom.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638797.2590246, - "msecs": 259.0, - "relativeCreated": 37522.16356, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:37,259" - } - ], - "time_consumption": 0.10020208358764648 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638797.459864, - "msecs": 459.0, - "relativeCreated": 37723.00294, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:37,459", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638797.459644, - "msecs": 459.0, - "relativeCreated": 37722.783109, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:37,459" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638797.4598074, - "msecs": 459.0, - "relativeCreated": 37722.946414, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:37,459" - } - ], - "time_consumption": 5.650520324707031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638797.459994, - "msecs": 459.0, - "relativeCreated": 37723.133194, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to True", - "asctime": "2025-08-19 23:26:37,459", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638797.6608503, - "msecs": 660.0, - "relativeCreated": 37923.98918, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffw.livingroom) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:37,660", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.4601288, - "msecs": 460.0, - "relativeCreated": 37723.267888, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:37,460" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638797.4626136, - "msecs": 462.0, - "relativeCreated": 37725.752496, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:37,462" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.4628255, - "msecs": 462.0, - "relativeCreated": 37725.964548, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:37,462" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.4631028, - "msecs": 463.0, - "relativeCreated": 37726.241627, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:37,463" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638797.4638171, - "msecs": 463.0, - "relativeCreated": 37726.956321, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:37,463" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", + "zigbee_ffe/ffe/livingroom/main_light", "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", @@ -56233,22 +3792,346 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638797.4640996, - "msecs": 464.0, - "relativeCreated": 37727.238599, - "thread": 131449202394816, + "created": 1755888839.3328958, + "msecs": 332.0, + "relativeCreated": 1207.705075, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:37,464" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,332" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/state", + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.3734865, + "msecs": 373.0, + "relativeCreated": 1248.295801, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,373" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.373781, + "msecs": 373.0, + "relativeCreated": 1248.590278, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,373" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.374065, + "msecs": 374.0, + "relativeCreated": 1248.874197, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,374" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.374205, + "msecs": 374.0, + "relativeCreated": 1249.014373, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,374" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.3744743, + "msecs": 374.0, + "relativeCreated": 1249.283366, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,374" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.3746057, + "msecs": 374.0, + "relativeCreated": 1249.414746, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,374" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.374839, + "msecs": 374.0, + "relativeCreated": 1249.648239, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,374" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.3749814, + "msecs": 374.0, + "relativeCreated": 1249.790611, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,374" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.3752038, + "msecs": 375.0, + "relativeCreated": 1250.012966, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,375" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.3753273, + "msecs": 375.0, + "relativeCreated": 1250.13644, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,375" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.3755457, + "msecs": 375.0, + "relativeCreated": 1250.355186, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,375" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.375683, + "msecs": 375.0, + "relativeCreated": 1250.492275, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,375" + }, + { + "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", @@ -56260,23 +4143,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638797.506094, - "msecs": 506.0, - "relativeCreated": 37769.233061, - "thread": 131449202394816, + "created": 1755888839.375899, + "msecs": 375.0, + "relativeCreated": 1250.708426, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:37,506" + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:53:59,375" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'50'" + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -56287,23 +4170,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638797.546202, - "msecs": 546.0, - "relativeCreated": 37809.340885, - "thread": 131449202394816, + "created": 1755888839.3761518, + "msecs": 376.0, + "relativeCreated": 1250.961139, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:37,546" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,376" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "b'5'" + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -56314,533 +4197,158 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638797.5463634, - "msecs": 546.0, - "relativeCreated": 37809.502394, - "thread": 131449202394816, + "created": 1755888839.3763587, + "msecs": 376.0, + "relativeCreated": 1251.167942, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:26:37,546" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,376" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for Shelly Main Light (ffw.livingroom)", - "True", - "" + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638797.6606672, - "msecs": 660.0, - "relativeCreated": 37923.806044, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.3765392, + "msecs": 376.0, + "relativeCreated": 1251.348414, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.livingroom)): True ()", - "asctime": "2025-08-19 23:26:37,660" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,376" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for Shelly Main Light (ffw.livingroom)", - "=", - "True", - "" + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638797.6607819, - "msecs": 660.0, - "relativeCreated": 37923.920855, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.3767264, + "msecs": 376.0, + "relativeCreated": 1251.535561, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.livingroom)): result = True ()", - "asctime": "2025-08-19 23:26:37,660" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,376" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.376906, + "msecs": 376.0, + "relativeCreated": 1251.715304, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,376" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.3770826, + "msecs": 377.0, + "relativeCreated": 1251.891816, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,377" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.417367, + "msecs": 417.0, + "relativeCreated": 1292.17631, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:53:59,417" } ], - "time_consumption": 6.842613220214844e-05 + "time_consumption": 0.014749765396118164 }, { "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638797.660979, - "msecs": 660.0, - "relativeCreated": 37924.117933, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to False", - "asctime": "2025-08-19 23:26:37,660", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.livingroom) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638797.8615894, - "msecs": 861.0, - "relativeCreated": 38124.728481, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffw.livingroom) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:37,861", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.6610873, - "msecs": 661.0, - "relativeCreated": 37924.226215, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:37,661" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638797.6631174, - "msecs": 663.0, - "relativeCreated": 37926.256318, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:37,663" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.6633847, - "msecs": 663.0, - "relativeCreated": 37926.523584, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:37,663" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638797.6640642, - "msecs": 664.0, - "relativeCreated": 37927.203281, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:37,664" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638797.7044492, - "msecs": 704.0, - "relativeCreated": 37967.5883, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:37,704" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.livingroom)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638797.861511, - "msecs": 861.0, - "relativeCreated": 38124.649857, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.livingroom)): False ()", - "asctime": "2025-08-19 23:26:37,861" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.livingroom)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638797.8615716, - "msecs": 861.0, - "relativeCreated": 38124.710612, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.livingroom)): result = False ()", - "asctime": "2025-08-19 23:26:37,861" - } - ], - "time_consumption": 1.7881393432617188e-05 - } - ], - "time_consumption": 0.6029398441314697, - "time_start": "2025-08-19 23:26:37,258", - "time_finished": "2025-08-19 23:26:37,861" - }, - "REQ-0102": { - "name": "__tLogger__", - "msg": "REQ-0102", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638797.8616905, - "msecs": 861.0, - "relativeCreated": 38124.82974, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0102", - "asctime": "2025-08-19 23:26:37,861", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638797.962028, - "msecs": 962.0, - "relativeCreated": 38225.166912, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:37,962", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638797.8617666, - "msecs": 861.0, - "relativeCreated": 38124.905568, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:37,861" - } - ], - "time_consumption": 0.10026144981384277 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638798.062627, - "msecs": 62.0, - "relativeCreated": 38325.766127, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:38,062", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638798.0624096, - "msecs": 62.0, - "relativeCreated": 38325.54874, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:38,062" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638798.0625718, - "msecs": 62.0, - "relativeCreated": 38325.710885, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:38,062" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffw.livingroom)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638798.0627403, - "msecs": 62.0, - "relativeCreated": 38325.879141, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.livingroom) to True", - "asctime": "2025-08-19 23:26:38,062", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", + "msg": "Value for ViDevLight.state (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", "args": [ "True", "" @@ -56854,157 +4362,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638798.2638025, - "msecs": 263.0, - "relativeCreated": 38526.941583, - "thread": 131449228267776, + "created": 1755888839.43244, + "msecs": 432.0, + "relativeCreated": 1307.249316, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:38,263", + "message": "Value for ViDevLight.state (ffe.livingroom.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:53:59,432", "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.0628655, - "msecs": 62.0, - "relativeCreated": 38326.004465, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:38,062" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.0632212, - "msecs": 63.0, - "relativeCreated": 38326.36026, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:38,063" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.0641663, - "msecs": 64.0, - "relativeCreated": 38327.305528, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:38,064" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.0647712, - "msecs": 64.0, - "relativeCreated": 38327.910191, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:38,064" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.0659392, - "msecs": 65.0, - "relativeCreated": 38329.078139, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:38,065" - }, { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/ffw/livingroom/main_light", + "Value for ViDevLight.state (ffe.livingroom.main_light)", "True", "" ], @@ -57017,22 +4390,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638798.2637107, - "msecs": 263.0, - "relativeCreated": 38526.849839, - "thread": 131449228267776, + "created": 1755888839.4323487, + "msecs": 432.0, + "relativeCreated": 1307.157999, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): True ()", - "asctime": "2025-08-19 23:26:38,263" + "message": "Result (Value for ViDevLight.state (ffe.livingroom.main_light)): True ()", + "asctime": "2025-08-22 20:53:59,432" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/ffw/livingroom/main_light", + "Value for ViDevLight.state (ffe.livingroom.main_light)", "=", "True", "" @@ -57046,25 +4419,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638798.2637794, - "msecs": 263.0, - "relativeCreated": 38526.91836, - "thread": 131449228267776, + "created": 1755888839.4324005, + "msecs": 432.0, + "relativeCreated": 1307.209678, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = True ()", - "asctime": "2025-08-19 23:26:38,263" + "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.main_light)): result = True ()", + "asctime": "2025-08-22 20:53:59,432" } ], - "time_consumption": 2.3126602172851562e-05 + "time_consumption": 3.9577484130859375e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (ffw.livingroom)", + "Shelly.relay/0 (ffe.livingroom.main_light)", "False" ], "levelname": "DEBUG", @@ -57074,53 +4447,24 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638798.2638566, - "msecs": 263.0, - "relativeCreated": 38526.99563, - "thread": 131449228267776, + "created": 1755888839.5329778, + "msecs": 532.0, + "relativeCreated": 1407.787108, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.livingroom) to False", - "asctime": "2025-08-19 23:26:38,263", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638798.464762, - "msecs": 464.0, - "relativeCreated": 38727.900774, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:38,464", + "message": "Setting state of Shelly.relay/0 (ffe.livingroom.main_light) to False", + "asctime": "2025-08-22 20:53:59,532", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/ffe/livingroom/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -57132,22 +4476,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638798.2639186, - "msecs": 263.0, - "relativeCreated": 38527.057549, - "thread": 131449228267776, + "created": 1755888839.4325714, + "msecs": 432.0, + "relativeCreated": 1307.380587, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:38,263" + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:53:59,432" }, { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/ffe/livingroom/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -57159,23 +4503,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638798.2643008, - "msecs": 264.0, - "relativeCreated": 38527.439682, - "thread": 131449202394816, + "created": 1755888839.4335148, + "msecs": 433.0, + "relativeCreated": 1308.32406, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:38,264" + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:53:59,433" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/state", - "b'false'" + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -57186,2484 +4530,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638798.2648995, - "msecs": 264.0, - "relativeCreated": 38528.038664, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:38,264" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638798.4645627, - "msecs": 464.0, - "relativeCreated": 38727.701761, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): False ()", - "asctime": "2025-08-19 23:26:38,464" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638798.4647055, - "msecs": 464.0, - "relativeCreated": 38727.844555, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = False ()", - "asctime": "2025-08-19 23:26:38,464" - } - ], - "time_consumption": 5.650520324707031e-05 - } - ], - "time_consumption": 0.6030714511871338, - "time_start": "2025-08-19 23:26:37,861", - "time_finished": "2025-08-19 23:26:38,464" - }, - "REQ-0103": { - "name": "__tLogger__", - "msg": "REQ-0103", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638798.4650767, - "msecs": 465.0, - "relativeCreated": 38728.215767, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0103", - "asctime": "2025-08-19 23:26:38,465", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638798.5657928, - "msecs": 565.0, - "relativeCreated": 38828.931707, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:38,565", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.465222, - "msecs": 465.0, - "relativeCreated": 38728.360877, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:38,465" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.4655373, - "msecs": 465.0, - "relativeCreated": 38728.676335, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:38,465" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.4663956, - "msecs": 466.0, - "relativeCreated": 38729.534632, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:38,466" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.4667072, - "msecs": 466.0, - "relativeCreated": 38729.846143, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:38,466" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.508291, - "msecs": 508.0, - "relativeCreated": 38771.430165, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:38,508" - } - ], - "time_consumption": 0.057501792907714844 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638798.666664, - "msecs": 666.0, - "relativeCreated": 38929.803015, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:38,666", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.566064, - "msecs": 566.0, - "relativeCreated": 38829.202972, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:38,566" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.5663815, - "msecs": 566.0, - "relativeCreated": 38829.520583, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:38,566" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.5682847, - "msecs": 568.0, - "relativeCreated": 38831.423718, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:38,568" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.5686836, - "msecs": 568.0, - "relativeCreated": 38831.822424, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:38,568" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.6107342, - "msecs": 610.0, - "relativeCreated": 38873.873394, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:38,610" - } - ], - "time_consumption": 0.05592966079711914 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638798.767258, - "msecs": 767.0, - "relativeCreated": 39030.396938, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:38,767", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638798.767023, - "msecs": 767.0, - "relativeCreated": 39030.162017, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:38,767" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638798.7672026, - "msecs": 767.0, - "relativeCreated": 39030.341548, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:38,767" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638798.767367, - "msecs": 767.0, - "relativeCreated": 39030.505969, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:38,767", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638798.9683475, - "msecs": 968.0, - "relativeCreated": 39231.486773, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:38,968", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.7674837, - "msecs": 767.0, - "relativeCreated": 39030.622597, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:26:38,767" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.7693312, - "msecs": 769.0, - "relativeCreated": 39032.470236, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:38,769" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.7695608, - "msecs": 769.0, - "relativeCreated": 39032.699789, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:38,769" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.7701511, - "msecs": 770.0, - "relativeCreated": 39033.290217, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:38,770" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.8116844, - "msecs": 811.0, - "relativeCreated": 39074.823479, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:38,811" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638798.9681442, - "msecs": 968.0, - "relativeCreated": 39231.28318, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:38,968" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638798.9682918, - "msecs": 968.0, - "relativeCreated": 39231.430796, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:38,968" - } - ], - "time_consumption": 5.5789947509765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638798.9684682, - "msecs": 968.0, - "relativeCreated": 39231.607155, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 20", - "asctime": "2025-08-19 23:26:38,968", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638799.1696, - "msecs": 169.0, - "relativeCreated": 39432.738937, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:39,169", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.968625, - "msecs": 968.0, - "relativeCreated": 39231.764065, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:26:38,968" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.9708734, - "msecs": 970.0, - "relativeCreated": 39234.01232, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:38,970" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638798.971121, - "msecs": 971.0, - "relativeCreated": 39234.260165, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:38,971" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638798.9717083, - "msecs": 971.0, - "relativeCreated": 39234.847332, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:38,971" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.0124397, - "msecs": 12.0, - "relativeCreated": 39275.578902, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:39,012" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638799.1694045, - "msecs": 169.0, - "relativeCreated": 39432.543389, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 20 ()", - "asctime": "2025-08-19 23:26:39,169" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638799.1695457, - "msecs": 169.0, - "relativeCreated": 39432.684794, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:39,169" - } - ], - "time_consumption": 5.435943603515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638799.1697123, - "msecs": 169.0, - "relativeCreated": 39432.851296, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 40", - "asctime": "2025-08-19 23:26:39,169", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638799.3705552, - "msecs": 370.0, - "relativeCreated": 39633.694205, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:39,370", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.169822, - "msecs": 169.0, - "relativeCreated": 39432.96108, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:26:39,169" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.172171, - "msecs": 172.0, - "relativeCreated": 39435.309919, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:39,172" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.1724434, - "msecs": 172.0, - "relativeCreated": 39435.582321, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:39,172" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.172974, - "msecs": 172.0, - "relativeCreated": 39436.11297, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:39,172" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.2132854, - "msecs": 213.0, - "relativeCreated": 39476.424463, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:39,213" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638799.3704498, - "msecs": 370.0, - "relativeCreated": 39633.588717, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 40 ()", - "asctime": "2025-08-19 23:26:39,370" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638799.3705344, - "msecs": 370.0, - "relativeCreated": 39633.6735, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:39,370" - } - ], - "time_consumption": 2.0742416381835938e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638799.3706098, - "msecs": 370.0, - "relativeCreated": 39633.748547, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 60", - "asctime": "2025-08-19 23:26:39,370", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638799.5711925, - "msecs": 571.0, - "relativeCreated": 39834.331555, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:39,571", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.3706872, - "msecs": 370.0, - "relativeCreated": 39633.826116, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:26:39,370" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.3718984, - "msecs": 371.0, - "relativeCreated": 39635.037319, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:39,371" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.371983, - "msecs": 371.0, - "relativeCreated": 39635.122018, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:39,371" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.3721974, - "msecs": 372.0, - "relativeCreated": 39635.336431, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:39,372" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.413255, - "msecs": 413.0, - "relativeCreated": 39676.393797, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:39,413" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638799.5710096, - "msecs": 571.0, - "relativeCreated": 39834.148461, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 60 ()", - "asctime": "2025-08-19 23:26:39,571" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638799.5711436, - "msecs": 571.0, - "relativeCreated": 39834.282651, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:39,571" - } - ], - "time_consumption": 4.887580871582031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638799.5712981, - "msecs": 571.0, - "relativeCreated": 39834.436963, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 80", - "asctime": "2025-08-19 23:26:39,571", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638799.7719305, - "msecs": 771.0, - "relativeCreated": 40035.069463, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:39,771", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.5714178, - "msecs": 571.0, - "relativeCreated": 39834.556825, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:26:39,571" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.5733378, - "msecs": 573.0, - "relativeCreated": 39836.476794, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:39,573" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.5735562, - "msecs": 573.0, - "relativeCreated": 39836.695227, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:39,573" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.5740528, - "msecs": 574.0, - "relativeCreated": 39837.191961, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:39,574" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.6150732, - "msecs": 615.0, - "relativeCreated": 39878.212377, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:39,615" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638799.7718437, - "msecs": 771.0, - "relativeCreated": 40034.982495, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 80 ()", - "asctime": "2025-08-19 23:26:39,771" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638799.7719111, - "msecs": 771.0, - "relativeCreated": 40035.050173, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:39,771" - } - ], - "time_consumption": 1.9311904907226562e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638799.7719753, - "msecs": 771.0, - "relativeCreated": 40035.114229, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 100", - "asctime": "2025-08-19 23:26:39,771", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638799.972786, - "msecs": 972.0, - "relativeCreated": 40235.924811, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:39,972", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.7720299, - "msecs": 772.0, - "relativeCreated": 40035.168986, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:39,772" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.773251, - "msecs": 773.0, - "relativeCreated": 40036.390008, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:39,773" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638799.7733526, - "msecs": 773.0, - "relativeCreated": 40036.491696, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:39,773" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.773516, - "msecs": 773.0, - "relativeCreated": 40036.654915, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:39,773" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638799.8152566, - "msecs": 815.0, - "relativeCreated": 40078.395463, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:39,815" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638799.972621, - "msecs": 972.0, - "relativeCreated": 40235.760149, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 100 ()", - "asctime": "2025-08-19 23:26:39,972" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638799.9727373, - "msecs": 972.0, - "relativeCreated": 40235.876377, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:39,972" - } - ], - "time_consumption": 4.863739013671875e-05 - } - ], - "time_consumption": 1.507709264755249, - "time_start": "2025-08-19 23:26:38,465", - "time_finished": "2025-08-19 23:26:39,972" - }, - "REQ-0104": { - "name": "__tLogger__", - "msg": "REQ-0104", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638799.9730394, - "msecs": 973.0, - "relativeCreated": 40236.178435, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0104", - "asctime": "2025-08-19 23:26:39,973", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638800.0732112, - "msecs": 73.0, - "relativeCreated": 40336.350233, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:40,073", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638800.1735995, - "msecs": 173.0, - "relativeCreated": 40436.738467, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:40,173", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638800.07334, - "msecs": 73.0, - "relativeCreated": 40336.478886, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:40,073" - } - ], - "time_consumption": 0.10025954246520996 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638800.2740037, - "msecs": 274.0, - "relativeCreated": 40537.142636, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:40,274", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638800.2739112, - "msecs": 273.0, - "relativeCreated": 40537.050322, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:40,273" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638800.273973, - "msecs": 273.0, - "relativeCreated": 40537.111957, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:40,273" - } - ], - "time_consumption": 3.075599670410156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638800.2740502, - "msecs": 274.0, - "relativeCreated": 40537.189301, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:40,274", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638800.4746962, - "msecs": 474.0, - "relativeCreated": 40737.835224, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:40,474", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638800.2741146, - "msecs": 274.0, - "relativeCreated": 40537.253606, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:40,274" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638800.2744305, - "msecs": 274.0, - "relativeCreated": 40537.56944, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:40,274" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638800.2749078, - "msecs": 274.0, - "relativeCreated": 40538.046902, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:40,274" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638800.4745104, + "created": 1755888839.474324, "msecs": 474.0, - "relativeCreated": 40737.649289, - "thread": 131449228267776, - "threadName": "MainThread", + "relativeCreated": 1349.133156, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:40,474" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,474" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638800.474647, - "msecs": 474.0, - "relativeCreated": 40737.785942, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:40,474" - } - ], - "time_consumption": 4.9114227294921875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638800.474804, - "msecs": 474.0, - "relativeCreated": 40737.943081, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 20", - "asctime": "2025-08-19 23:26:40,474", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638800.6754668, - "msecs": 675.0, - "relativeCreated": 40938.605636, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:40,675", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -59674,23 +4557,23 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638800.4749792, + "created": 1755888839.474592, "msecs": 474.0, - "relativeCreated": 40738.118139, - "thread": 131449228267776, - "threadName": "MainThread", + "relativeCreated": 1349.401169, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:40,474" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,474" }, { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -59701,23 +4584,50 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638800.4758193, + "created": 1755888839.4748921, + "msecs": 474.0, + "relativeCreated": 1349.701335, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,474" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.4750347, "msecs": 475.0, - "relativeCreated": 40738.958227, - "thread": 131449202394816, + "relativeCreated": 1349.84395, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:40,475" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,475" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'20'" + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -59728,139 +4638,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638800.4770167, - "msecs": 477.0, - "relativeCreated": 40740.15554, - "thread": 131449202394816, + "created": 1755888839.4753337, + "msecs": 475.0, + "relativeCreated": 1350.142912, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:40,477" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,475" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638800.6753945, - "msecs": 675.0, - "relativeCreated": 40938.533493, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 20 ()", - "asctime": "2025-08-19 23:26:40,675" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638800.6754498, - "msecs": 675.0, - "relativeCreated": 40938.588866, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:40,675" - } - ], - "time_consumption": 1.6927719116210938e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638800.6755083, - "msecs": 675.0, - "relativeCreated": 40938.647218, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 40", - "asctime": "2025-08-19 23:26:40,675", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638800.876097, - "msecs": 876.0, - "relativeCreated": 41139.236046, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:40,876", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -59871,23 +4665,23 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638800.6755655, - "msecs": 675.0, - "relativeCreated": 40938.70458, - "thread": 131449228267776, - "threadName": "MainThread", + "created": 1755888839.4754698, + "msecs": 475.0, + "relativeCreated": 1350.278982, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:40,675" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,475" }, { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -59898,23 +4692,50 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638800.6760387, - "msecs": 676.0, - "relativeCreated": 40939.177777, - "thread": 131449202394816, + "created": 1755888839.4757235, + "msecs": 475.0, + "relativeCreated": 1350.532752, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:40,676" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,475" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.4758499, + "msecs": 475.0, + "relativeCreated": 1350.659173, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,475" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'40'" + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -59925,24 +4746,351 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638800.6764972, - "msecs": 676.0, - "relativeCreated": 40939.636144, - "thread": 131449202394816, + "created": 1755888839.4760718, + "msecs": 476.0, + "relativeCreated": 1350.88111, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:40,676" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,476" }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.476236, + "msecs": 476.0, + "relativeCreated": 1351.045265, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,476" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.4764686, + "msecs": 476.0, + "relativeCreated": 1351.277745, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,476" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.476591, + "msecs": 476.0, + "relativeCreated": 1351.400426, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,476" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.476826, + "msecs": 476.0, + "relativeCreated": 1351.635041, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:53:59,476" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.4770653, + "msecs": 477.0, + "relativeCreated": 1351.874516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,477" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.4772515, + "msecs": 477.0, + "relativeCreated": 1352.060771, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,477" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.4774318, + "msecs": 477.0, + "relativeCreated": 1352.241087, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,477" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.4776146, + "msecs": 477.0, + "relativeCreated": 1352.42376, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,477" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.4778597, + "msecs": 477.0, + "relativeCreated": 1352.669184, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,477" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.4780376, + "msecs": 478.0, + "relativeCreated": 1352.846667, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,478" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.5182457, + "msecs": 518.0, + "relativeCreated": 1393.054791, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:53:59,518" + } + ], + "time_consumption": 0.014732122421264648 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888839.5333161, + "msecs": 533.0, + "relativeCreated": 1408.125374, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.livingroom.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:53:59,533", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/ffw/livingroom/main_light", - "40", - "" + "Value for ViDevLight.state (ffe.livingroom.main_light)", + "False", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -59953,25 +5101,25 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638800.8759482, - "msecs": 875.0, - "relativeCreated": 41139.087376, - "thread": 131449228267776, + "created": 1755888839.533203, + "msecs": 533.0, + "relativeCreated": 1408.012074, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 40 ()", - "asctime": "2025-08-19 23:26:40,875" + "message": "Result (Value for ViDevLight.state (ffe.livingroom.main_light)): False ()", + "asctime": "2025-08-22 20:53:59,533" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/ffw/livingroom/main_light", + "Value for ViDevLight.state (ffe.livingroom.main_light)", "=", - "40", - "" + "False", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -59982,16 +5130,2144 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638800.8760538, - "msecs": 876.0, - "relativeCreated": 41139.192741, - "thread": 131449228267776, + "created": 1755888839.533256, + "msecs": 533.0, + "relativeCreated": 1408.065277, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:40,876" + "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.main_light)): result = False ()", + "asctime": "2025-08-22 20:53:59,533" + } + ], + "time_consumption": 6.008148193359375e-05 + } + ], + "time_consumption": 0.3029351234436035, + "time_start": "2025-08-22 20:53:59,230", + "time_finished": "2025-08-22 20:53:59,533" + }, + "ViDevLight.state (ffe.livingroom.floorlamp) -> Light.state (ffe.livingroom.floor_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.livingroom.floorlamp) -> Light.state (ffe.livingroom.floor_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888839.533568, + "msecs": 533.0, + "relativeCreated": 1408.377301, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.livingroom.floorlamp) -> Light.state (ffe.livingroom.floor_light)", + "asctime": "2025-08-22 20:53:59,533", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888839.634189, + "msecs": 634.0, + "relativeCreated": 1508.997917, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:53:59,634", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.5337167, + "msecs": 533.0, + "relativeCreated": 1408.52587, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", + "asctime": "2025-08-22 20:53:59,533" + } + ], + "time_consumption": 0.10047221183776855 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888839.634556, + "msecs": 634.0, + "relativeCreated": 1509.365412, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:53:59,634", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888839.6344519, + "msecs": 634.0, + "relativeCreated": 1509.261109, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:53:59,634" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888839.6345117, + "msecs": 634.0, + "relativeCreated": 1509.320801, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:53:59,634" + } + ], + "time_consumption": 4.4345855712890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.livingroom.floorlamp)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888839.7352078, + "msecs": 735.0, + "relativeCreated": 1610.016842, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.livingroom.floorlamp) to True", + "asctime": "2025-08-22 20:53:59,735", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.6347058, + "msecs": 634.0, + "relativeCreated": 1509.514957, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload true", + "asctime": "2025-08-22 20:53:59,634" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6377733, + "msecs": 637.0, + "relativeCreated": 1512.582577, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,637" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.638041, + "msecs": 638.0, + "relativeCreated": 1512.850218, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,638" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6384816, + "msecs": 638.0, + "relativeCreated": 1513.290775, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,638" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.6386712, + "msecs": 638.0, + "relativeCreated": 1513.480415, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,638" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6389196, + "msecs": 638.0, + "relativeCreated": 1513.728964, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,638" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.6390676, + "msecs": 639.0, + "relativeCreated": 1513.876812, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6393492, + "msecs": 639.0, + "relativeCreated": 1514.158564, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.6394944, + "msecs": 639.0, + "relativeCreated": 1514.303577, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.63978, + "msecs": 639.0, + "relativeCreated": 1514.589311, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.6399264, + "msecs": 639.0, + "relativeCreated": 1514.735793, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6401925, + "msecs": 640.0, + "relativeCreated": 1515.001643, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:53:59,640" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.6403399, + "msecs": 640.0, + "relativeCreated": 1515.149318, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,640" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6405885, + "msecs": 640.0, + "relativeCreated": 1515.397702, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,640" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6408496, + "msecs": 640.0, + "relativeCreated": 1515.658998, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,640" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.641071, + "msecs": 641.0, + "relativeCreated": 1515.880421, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,641" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6412761, + "msecs": 641.0, + "relativeCreated": 1516.085412, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,641" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6414778, + "msecs": 641.0, + "relativeCreated": 1516.287173, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,641" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.6820629, + "msecs": 682.0, + "relativeCreated": 1556.871957, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,682" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.682419, + "msecs": 682.0, + "relativeCreated": 1557.228099, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:53:59,682" + } + ], + "time_consumption": 0.052788734436035156 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888839.7356086, + "msecs": 735.0, + "relativeCreated": 1610.417899, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:53:59,735", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (ffe.livingroom.floor_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888839.7355125, + "msecs": 735.0, + "relativeCreated": 1610.321795, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (ffe.livingroom.floor_light)): True ()", + "asctime": "2025-08-22 20:53:59,735" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (ffe.livingroom.floor_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888839.735568, + "msecs": 735.0, + "relativeCreated": 1610.377466, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (ffe.livingroom.floor_light)): result = True ()", + "asctime": "2025-08-22 20:53:59,735" + } + ], + "time_consumption": 4.0531158447265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.livingroom.floorlamp)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888839.8362105, + "msecs": 836.0, + "relativeCreated": 1711.019724, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.livingroom.floorlamp) to False", + "asctime": "2025-08-22 20:53:59,836", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.7357452, + "msecs": 735.0, + "relativeCreated": 1610.554551, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", + "asctime": "2025-08-22 20:53:59,735" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7387884, + "msecs": 738.0, + "relativeCreated": 1613.597695, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,738" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.739025, + "msecs": 739.0, + "relativeCreated": 1613.83438, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,739" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7393062, + "msecs": 739.0, + "relativeCreated": 1614.11548, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,739" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.739476, + "msecs": 739.0, + "relativeCreated": 1614.285153, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,739" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7397852, + "msecs": 739.0, + "relativeCreated": 1614.594377, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,739" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.7399297, + "msecs": 739.0, + "relativeCreated": 1614.738918, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,739" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7401767, + "msecs": 740.0, + "relativeCreated": 1614.985835, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,740" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.7403085, + "msecs": 740.0, + "relativeCreated": 1615.117718, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,740" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7405438, + "msecs": 740.0, + "relativeCreated": 1615.352998, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,740" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.7406905, + "msecs": 740.0, + "relativeCreated": 1615.499765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,740" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.740934, + "msecs": 740.0, + "relativeCreated": 1615.74305, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:53:59,740" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.7410672, + "msecs": 741.0, + "relativeCreated": 1615.876534, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,741" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7412927, + "msecs": 741.0, + "relativeCreated": 1616.102003, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,741" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7415311, + "msecs": 741.0, + "relativeCreated": 1616.34045, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,741" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7417443, + "msecs": 741.0, + "relativeCreated": 1616.553616, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,741" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7419343, + "msecs": 741.0, + "relativeCreated": 1616.743464, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,741" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7421217, + "msecs": 742.0, + "relativeCreated": 1616.930954, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,742" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.742316, + "msecs": 742.0, + "relativeCreated": 1617.125367, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,742" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.7820318, + "msecs": 782.0, + "relativeCreated": 1656.841042, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:53:59,782" + } + ], + "time_consumption": 0.054178714752197266 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888839.8366146, + "msecs": 836.0, + "relativeCreated": 1711.423934, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:53:59,836", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (ffe.livingroom.floor_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888839.8365204, + "msecs": 836.0, + "relativeCreated": 1711.329787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (ffe.livingroom.floor_light)): False ()", + "asctime": "2025-08-22 20:53:59,836" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (ffe.livingroom.floor_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888839.8365757, + "msecs": 836.0, + "relativeCreated": 1711.38508, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (ffe.livingroom.floor_light)): result = False ()", + "asctime": "2025-08-22 20:53:59,836" + } + ], + "time_consumption": 3.886222839355469e-05 + } + ], + "time_consumption": 0.30304670333862305, + "time_start": "2025-08-22 20:53:59,533", + "time_finished": "2025-08-22 20:53:59,836" + }, + "Light.state (ffe.livingroom.floor_light) -> ViDevLight.state (ffe.livingroom.floorlamp)": { + "name": "__tLogger__", + "msg": "Light.state (ffe.livingroom.floor_light) -> ViDevLight.state (ffe.livingroom.floorlamp)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888839.8368814, + "msecs": 836.0, + "relativeCreated": 1711.690758, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.state (ffe.livingroom.floor_light) -> ViDevLight.state (ffe.livingroom.floorlamp)", + "asctime": "2025-08-22 20:53:59,836", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888839.937519, + "msecs": 937.0, + "relativeCreated": 1812.32835, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:53:59,937", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.8370275, + "msecs": 837.0, + "relativeCreated": 1711.836881, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", + "asctime": "2025-08-22 20:53:59,837" + } + ], + "time_consumption": 0.10049152374267578 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888839.9379034, + "msecs": 937.0, + "relativeCreated": 1812.712674, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:53:59,937", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888839.9378078, + "msecs": 937.0, + "relativeCreated": 1812.617203, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:53:59,937" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888839.9378636, + "msecs": 937.0, + "relativeCreated": 1812.672787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:53:59,937" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.state (ffe.livingroom.floor_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888840.0392933, + "msecs": 39.0, + "relativeCreated": 1914.102522, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.state (ffe.livingroom.floor_light) to True", + "asctime": "2025-08-22 20:54:00,039", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.9380753, + "msecs": 938.0, + "relativeCreated": 1812.884529, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,938" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.938342, + "msecs": 938.0, + "relativeCreated": 1813.151349, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,938" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.9384863, + "msecs": 938.0, + "relativeCreated": 1813.295481, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,938" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.9386294, + "msecs": 938.0, + "relativeCreated": 1813.438551, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,938" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.938776, + "msecs": 938.0, + "relativeCreated": 1813.585262, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,938" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888839.9388907, + "msecs": 938.0, + "relativeCreated": 1813.699859, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:53:59,938" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.9396837, + "msecs": 939.0, + "relativeCreated": 1814.492822, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,939" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.9399657, + "msecs": 939.0, + "relativeCreated": 1814.774906, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,939" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.940184, + "msecs": 940.0, + "relativeCreated": 1814.993248, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,940" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.9403915, + "msecs": 940.0, + "relativeCreated": 1815.20069, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,940" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.9405959, + "msecs": 940.0, + "relativeCreated": 1815.405317, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,940" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.9408484, + "msecs": 940.0, + "relativeCreated": 1815.657725, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:53:59,940" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888839.9416144, + "msecs": 941.0, + "relativeCreated": 1816.42346, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:53:59,941" + } + ], + "time_consumption": 0.09767889976501465 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888840.0396175, + "msecs": 39.0, + "relativeCreated": 1914.426671, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.livingroom.floorlamp) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:00,039", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.livingroom.floorlamp)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888840.0395179, + "msecs": 39.0, + "relativeCreated": 1914.327151, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.livingroom.floorlamp)): True ()", + "asctime": "2025-08-22 20:54:00,039" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.livingroom.floorlamp)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888840.0395744, + "msecs": 39.0, + "relativeCreated": 1914.383622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.floorlamp)): result = True ()", + "asctime": "2025-08-22 20:54:00,039" } ], "time_consumption": 4.315376281738281e-05 @@ -60000,3821 +7276,7 @@ "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638800.876187, - "msecs": 876.0, - "relativeCreated": 41139.3261, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 60", - "asctime": "2025-08-19 23:26:40,876", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638801.0769167, - "msecs": 76.0, - "relativeCreated": 41340.055662, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:41,076", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638800.87633, - "msecs": 876.0, - "relativeCreated": 41139.468932, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:40,876" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638800.877247, - "msecs": 877.0, - "relativeCreated": 41140.385958, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:40,877" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638800.878389, - "msecs": 878.0, - "relativeCreated": 41141.528088, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:40,878" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638801.0768003, - "msecs": 76.0, - "relativeCreated": 41339.939171, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 60 ()", - "asctime": "2025-08-19 23:26:41,076" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638801.0768847, - "msecs": 76.0, - "relativeCreated": 41340.023845, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:41,076" - } - ], - "time_consumption": 3.1948089599609375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638801.076976, - "msecs": 76.0, - "relativeCreated": 41340.115213, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 80", - "asctime": "2025-08-19 23:26:41,076", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638801.2778647, - "msecs": 277.0, - "relativeCreated": 41541.003676, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:41,277", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.0770767, - "msecs": 77.0, - "relativeCreated": 41340.215679, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:41,077" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.0776393, - "msecs": 77.0, - "relativeCreated": 41340.778509, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:41,077" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.0780802, - "msecs": 78.0, - "relativeCreated": 41341.219343, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:41,078" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638801.2776272, - "msecs": 277.0, - "relativeCreated": 41540.766204, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 80 ()", - "asctime": "2025-08-19 23:26:41,277" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638801.2778041, - "msecs": 277.0, - "relativeCreated": 41540.942917, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:41,277" - } - ], - "time_consumption": 6.0558319091796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638801.2780282, - "msecs": 278.0, - "relativeCreated": 41541.167272, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 100", - "asctime": "2025-08-19 23:26:41,278", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638801.4791114, - "msecs": 479.0, - "relativeCreated": 41742.250392, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:41,479", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.2782102, - "msecs": 278.0, - "relativeCreated": 41541.348964, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:41,278" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.27945, - "msecs": 279.0, - "relativeCreated": 41542.588785, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:41,279" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.2809963, - "msecs": 280.0, - "relativeCreated": 41544.135294, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:41,280" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638801.478883, - "msecs": 478.0, - "relativeCreated": 41742.02199, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 100 ()", - "asctime": "2025-08-19 23:26:41,478" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638801.4790576, - "msecs": 479.0, - "relativeCreated": 41742.196783, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:41,479" - } - ], - "time_consumption": 5.3882598876953125e-05 - } - ], - "time_consumption": 1.5060720443725586, - "time_start": "2025-08-19 23:26:39,973", - "time_finished": "2025-08-19 23:26:41,479" - }, - "REQ-0105": { - "name": "__tLogger__", - "msg": "REQ-0105", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638801.479369, - "msecs": 479.0, - "relativeCreated": 41742.507875, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0105", - "asctime": "2025-08-19 23:26:41,479", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638801.5796964, - "msecs": 579.0, - "relativeCreated": 41842.83546, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:41,579", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638801.6807117, - "msecs": 680.0, - "relativeCreated": 41943.850767, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:41,680", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.5799985, - "msecs": 579.0, - "relativeCreated": 41843.137412, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:41,579" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.5802934, - "msecs": 580.0, - "relativeCreated": 41843.432458, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:41,580" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.5822601, - "msecs": 582.0, - "relativeCreated": 41845.399244, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:41,582" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.5826442, - "msecs": 582.0, - "relativeCreated": 41845.783126, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:41,582" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.6252794, - "msecs": 625.0, - "relativeCreated": 41888.418382, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:41,625" - } - ], - "time_consumption": 0.05543231964111328 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638801.7814267, - "msecs": 781.0, - "relativeCreated": 42044.565796, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:41,781", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638801.7812452, - "msecs": 781.0, - "relativeCreated": 42044.384143, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:41,781" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638801.781378, - "msecs": 781.0, - "relativeCreated": 42044.51694, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:41,781" - } - ], - "time_consumption": 4.863739013671875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638801.7815335, - "msecs": 781.0, - "relativeCreated": 42044.672555, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:41,781", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638801.9830527, - "msecs": 983.0, - "relativeCreated": 42246.191815, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:41,983", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.781676, - "msecs": 781.0, - "relativeCreated": 42044.815152, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 0", - "asctime": "2025-08-19 23:26:41,781" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.784027, - "msecs": 784.0, - "relativeCreated": 42047.166158, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:41,784" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.784247, - "msecs": 784.0, - "relativeCreated": 42047.386105, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:41,784" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.784824, - "msecs": 784.0, - "relativeCreated": 42047.962782, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:41,784" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.8252685, - "msecs": 825.0, - "relativeCreated": 42088.407364, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:41,825" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638801.98295, - "msecs": 982.0, - "relativeCreated": 42246.0888, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:41,982" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638801.9830284, - "msecs": 983.0, - "relativeCreated": 42246.167438, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:41,983" - } - ], - "time_consumption": 2.4318695068359375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638801.9831188, - "msecs": 983.0, - "relativeCreated": 42246.257836, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 2", - "asctime": "2025-08-19 23:26:41,983", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638802.1839385, - "msecs": 183.0, - "relativeCreated": 42447.077522, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:42,183", - "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", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.9831781, - "msecs": 983.0, - "relativeCreated": 42246.317358, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 2", - "asctime": "2025-08-19 23:26:41,983" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.9870405, - "msecs": 987.0, - "relativeCreated": 42250.179483, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:41,987" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638801.9871798, - "msecs": 987.0, - "relativeCreated": 42250.318828, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:41,987" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638801.9875298, - "msecs": 987.0, - "relativeCreated": 42250.668738, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:41,987" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.0280752, - "msecs": 28.0, - "relativeCreated": 42291.214378, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:42,028" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638802.1836958, - "msecs": 183.0, - "relativeCreated": 42446.834922, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 2 ()", - "asctime": "2025-08-19 23:26:42,183" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638802.1838415, - "msecs": 183.0, - "relativeCreated": 42446.980635, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:42,183" - } - ], - "time_consumption": 9.703636169433594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638802.1840618, - "msecs": 184.0, - "relativeCreated": 42447.200714, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 4", - "asctime": "2025-08-19 23:26:42,184", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638802.3849998, - "msecs": 384.0, - "relativeCreated": 42648.138675, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:42,384", - "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", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.184173, - "msecs": 184.0, - "relativeCreated": 42447.312057, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 4", - "asctime": "2025-08-19 23:26:42,184" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.1865377, - "msecs": 186.0, - "relativeCreated": 42449.676796, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:42,186" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.1867805, - "msecs": 186.0, - "relativeCreated": 42449.91947, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:42,186" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.1873498, - "msecs": 187.0, - "relativeCreated": 42450.488777, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:42,187" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.2290504, - "msecs": 229.0, - "relativeCreated": 42492.189483, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:42,229" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638802.3847919, - "msecs": 384.0, - "relativeCreated": 42647.930769, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 4 ()", - "asctime": "2025-08-19 23:26:42,384" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638802.3849485, - "msecs": 384.0, - "relativeCreated": 42648.087496, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:42,384" - } - ], - "time_consumption": 5.125999450683594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638802.385111, - "msecs": 385.0, - "relativeCreated": 42648.250091, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 6", - "asctime": "2025-08-19 23:26:42,385", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638802.5859625, - "msecs": 585.0, - "relativeCreated": 42849.101534, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:42,585", - "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", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.3852298, - "msecs": 385.0, - "relativeCreated": 42648.368833, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 6", - "asctime": "2025-08-19 23:26:42,385" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.3870783, - "msecs": 387.0, - "relativeCreated": 42650.217529, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:42,387" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.3873227, - "msecs": 387.0, - "relativeCreated": 42650.461664, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:42,387" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.3878603, - "msecs": 387.0, - "relativeCreated": 42650.999118, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:42,387" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.4292305, - "msecs": 429.0, - "relativeCreated": 42692.3693, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:42,429" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638802.5857687, - "msecs": 585.0, - "relativeCreated": 42848.907812, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 6 ()", - "asctime": "2025-08-19 23:26:42,585" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638802.585912, - "msecs": 585.0, - "relativeCreated": 42849.051124, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:42,585" - } - ], - "time_consumption": 5.054473876953125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638802.586066, - "msecs": 586.0, - "relativeCreated": 42849.204856, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 8", - "asctime": "2025-08-19 23:26:42,586", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638802.786745, - "msecs": 786.0, - "relativeCreated": 43049.884114, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:42,786", - "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", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.5861926, - "msecs": 586.0, - "relativeCreated": 42849.331524, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 8", - "asctime": "2025-08-19 23:26:42,586" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.588326, - "msecs": 588.0, - "relativeCreated": 42851.464802, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:42,588" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.5885274, - "msecs": 588.0, - "relativeCreated": 42851.6663, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:42,588" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.5892322, - "msecs": 589.0, - "relativeCreated": 42852.371096, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:42,589" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.6307068, - "msecs": 630.0, - "relativeCreated": 42893.845687, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:42,630" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638802.786657, - "msecs": 786.0, - "relativeCreated": 43049.795941, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 8 ()", - "asctime": "2025-08-19 23:26:42,786" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638802.7867205, - "msecs": 786.0, - "relativeCreated": 43049.859482, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:42,786" - } - ], - "time_consumption": 2.4557113647460938e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/livingroom/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638802.7868001, - "msecs": 786.0, - "relativeCreated": 43049.939079, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/livingroom/main_light to 10", - "asctime": "2025-08-19 23:26:42,786", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638802.987552, - "msecs": 987.0, - "relativeCreated": 43250.690883, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/livingroom/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:42,987", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.786857, - "msecs": 786.0, - "relativeCreated": 43049.995893, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:42,786" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.7879448, - "msecs": 787.0, - "relativeCreated": 43051.083687, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:42,787" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638802.7880516, - "msecs": 788.0, - "relativeCreated": 43051.190801, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:42,788" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.7882545, - "msecs": 788.0, - "relativeCreated": 43051.393375, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:42,788" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638802.829127, - "msecs": 829.0, - "relativeCreated": 43092.266067, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:42,829" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638802.9873574, - "msecs": 987.0, - "relativeCreated": 43250.496421, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/livingroom/main_light): 10 ()", - "asctime": "2025-08-19 23:26:42,987" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/livingroom/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638802.987498, - "msecs": 987.0, - "relativeCreated": 43250.636931, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/livingroom/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:42,987" - } - ], - "time_consumption": 5.3882598876953125e-05 - } - ], - "time_consumption": 1.5081830024719238, - "time_start": "2025-08-19 23:26:41,479", - "time_finished": "2025-08-19 23:26:42,987" - }, - "REQ-0106": { - "name": "__tLogger__", - "msg": "REQ-0106", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638802.987788, - "msecs": 987.0, - "relativeCreated": 43250.927141, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0106", - "asctime": "2025-08-19 23:26:42,987", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638803.0881212, - "msecs": 88.0, - "relativeCreated": 43351.25997, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:43,088", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638803.188763, - "msecs": 188.0, - "relativeCreated": 43451.901959, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:43,188", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638803.0883825, - "msecs": 88.0, - "relativeCreated": 43351.521519, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:43,088" - } - ], - "time_consumption": 0.10038042068481445 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638803.2895317, - "msecs": 289.0, - "relativeCreated": 43552.670665, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:43,289", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638803.2893345, - "msecs": 289.0, - "relativeCreated": 43552.473454, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:43,289" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638803.2894764, - "msecs": 289.0, - "relativeCreated": 43552.615429, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:43,289" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638803.2896469, - "msecs": 289.0, - "relativeCreated": 43552.785923, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 0", - "asctime": "2025-08-19 23:26:43,289", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638803.490718, - "msecs": 490.0, - "relativeCreated": 43753.857077, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:43,490", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638803.2898698, - "msecs": 289.0, - "relativeCreated": 43553.008948, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:43,289" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.2909508, - "msecs": 290.0, - "relativeCreated": 43554.089605, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:43,290" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.2922945, - "msecs": 292.0, - "relativeCreated": 43555.433402, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:43,292" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638803.4905005, - "msecs": 490.0, - "relativeCreated": 43753.639408, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 0 ()", - "asctime": "2025-08-19 23:26:43,490" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638803.4906487, - "msecs": 490.0, - "relativeCreated": 43753.787783, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:43,490" - } - ], - "time_consumption": 6.914138793945312e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638803.4908545, - "msecs": 490.0, - "relativeCreated": 43753.993353, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 2", - "asctime": "2025-08-19 23:26:43,490", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638803.69166, - "msecs": 691.0, - "relativeCreated": 43954.799085, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:43,691", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638803.4910493, - "msecs": 491.0, - "relativeCreated": 43754.188286, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:43,491" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.4921033, - "msecs": 492.0, - "relativeCreated": 43755.24253, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:43,492" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.4933527, - "msecs": 493.0, - "relativeCreated": 43756.491594, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:43,493" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638803.6914988, - "msecs": 691.0, - "relativeCreated": 43954.637858, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 2 ()", - "asctime": "2025-08-19 23:26:43,691" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638803.6916108, - "msecs": 691.0, - "relativeCreated": 43954.750008, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:43,691" - } - ], - "time_consumption": 4.9114227294921875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638803.6917925, - "msecs": 691.0, - "relativeCreated": 43954.9315, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 4", - "asctime": "2025-08-19 23:26:43,691", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638803.8925836, - "msecs": 892.0, - "relativeCreated": 44155.722799, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:43,892", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638803.6919513, - "msecs": 691.0, - "relativeCreated": 43955.090386, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:43,691" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.6926477, - "msecs": 692.0, - "relativeCreated": 43955.786626, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:43,692" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.6936748, - "msecs": 693.0, - "relativeCreated": 43956.813821, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:43,693" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638803.8923852, - "msecs": 892.0, - "relativeCreated": 44155.524273, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 4 ()", - "asctime": "2025-08-19 23:26:43,892" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638803.8925326, - "msecs": 892.0, - "relativeCreated": 44155.671385, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:43,892" - } - ], - "time_consumption": 5.1021575927734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638803.8926823, - "msecs": 892.0, - "relativeCreated": 44155.821268, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 6", - "asctime": "2025-08-19 23:26:43,892", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638804.0934145, - "msecs": 93.0, - "relativeCreated": 44356.553637, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:44,093", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638803.8928287, - "msecs": 892.0, - "relativeCreated": 44155.967668, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:43,892" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.893462, - "msecs": 893.0, - "relativeCreated": 44156.600911, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:43,893" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638803.8946025, - "msecs": 894.0, - "relativeCreated": 44157.741555, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:43,894" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638804.093253, - "msecs": 93.0, - "relativeCreated": 44356.391885, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 6 ()", - "asctime": "2025-08-19 23:26:44,093" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638804.093371, - "msecs": 93.0, - "relativeCreated": 44356.50997, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:44,093" - } - ], - "time_consumption": 4.363059997558594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638804.0935135, - "msecs": 93.0, - "relativeCreated": 44356.652404, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 8", - "asctime": "2025-08-19 23:26:44,093", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638804.2942095, - "msecs": 294.0, - "relativeCreated": 44557.348581, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:44,294", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.0937047, - "msecs": 93.0, - "relativeCreated": 44356.843596, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:44,093" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.0943203, - "msecs": 94.0, - "relativeCreated": 44357.459277, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:44,094" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.095619, - "msecs": 95.0, - "relativeCreated": 44358.758178, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:44,095" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638804.2940679, - "msecs": 294.0, - "relativeCreated": 44557.206976, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 8 ()", - "asctime": "2025-08-19 23:26:44,294" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638804.2941718, - "msecs": 294.0, - "relativeCreated": 44557.310971, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:44,294" - } - ], - "time_consumption": 3.7670135498046875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638804.2942924, - "msecs": 294.0, - "relativeCreated": 44557.431577, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/livingroom/main_light to 10", - "asctime": "2025-08-19 23:26:44,294", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/livingroom/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638804.4949071, - "msecs": 494.0, - "relativeCreated": 44758.046177, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/livingroom/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:44,494", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.294427, - "msecs": 294.0, - "relativeCreated": 44557.56591, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:44,294" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.2950022, - "msecs": 295.0, - "relativeCreated": 44558.141232, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:44,295" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.2958527, - "msecs": 295.0, - "relativeCreated": 44558.991461, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:44,295" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638804.4947999, - "msecs": 494.0, - "relativeCreated": 44757.938811, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/livingroom/main_light): 10 ()", - "asctime": "2025-08-19 23:26:44,494" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/livingroom/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638804.494873, - "msecs": 494.0, - "relativeCreated": 44758.01201, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/livingroom/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:44,494" - } - ], - "time_consumption": 3.409385681152344e-05 - } - ], - "time_consumption": 1.5071191787719727, - "time_start": "2025-08-19 23:26:42,987", - "time_finished": "2025-08-19 23:26:44,494" - }, - "REQ-0121": { - "name": "__tLogger__", - "msg": "REQ-0121", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638804.495045, - "msecs": 495.0, - "relativeCreated": 44758.183955, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0121", - "asctime": "2025-08-19 23:26:44,495", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ + "Light.state (ffe.livingroom.floor_light)", "False" ], "levelname": "DEBUG", @@ -63824,771 +7286,24 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 19, + "lineno": 28, "funcName": "device_follow", - "created": 1755638804.5954385, - "msecs": 595.0, - "relativeCreated": 44858.577672, - "thread": 131449228267776, + "created": 1755888840.1410313, + "msecs": 141.0, + "relativeCreated": 2015.840342, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:44,595", + "message": "Setting state of Light.state (ffe.livingroom.floor_light) to False", + "asctime": "2025-08-22 20:54:00,141", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state.set", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.4951348, - "msecs": 495.0, - "relativeCreated": 44758.273699, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:44,495" - }, - { - "name": "smart_brain.devices.shellies.ffw.sleep.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638804.4953003, - "msecs": 495.0, - "relativeCreated": 44758.439391, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:44,495" - } - ], - "time_consumption": 0.10013818740844727 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638804.6957352, - "msecs": 695.0, - "relativeCreated": 44958.874324, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:44,695", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638804.6956518, - "msecs": 695.0, - "relativeCreated": 44958.790786, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:44,695" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638804.695716, - "msecs": 695.0, - "relativeCreated": 44958.854756, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:44,695" - } - ], - "time_consumption": 1.9311904907226562e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638804.6957784, - "msecs": 695.0, - "relativeCreated": 44958.917338, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to True", - "asctime": "2025-08-19 23:26:44,695", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.sleep) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638804.8963096, - "msecs": 896.0, - "relativeCreated": 45159.448432, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffw.sleep) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:44,896", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.6958172, - "msecs": 695.0, - "relativeCreated": 44958.956118, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:44,695" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.6965814, - "msecs": 696.0, - "relativeCreated": 44959.7205, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:44,696" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.6966608, - "msecs": 696.0, - "relativeCreated": 44959.799788, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:44,696" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.696745, - "msecs": 696.0, - "relativeCreated": 44959.883851, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:44,696" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.6969626, - "msecs": 696.0, - "relativeCreated": 44960.101444, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:44,696" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.6970878, - "msecs": 697.0, - "relativeCreated": 44960.226826, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:44,697" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.7383056, - "msecs": 738.0, - "relativeCreated": 45001.444564, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:44,738" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.738461, - "msecs": 738.0, - "relativeCreated": 45001.600032, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:44,738" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.738638, - "msecs": 738.0, - "relativeCreated": 45001.776813, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:44,738" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.7388074, - "msecs": 738.0, - "relativeCreated": 45001.946549, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:44,738" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.7389393, - "msecs": 738.0, - "relativeCreated": 45002.078499, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:44,738" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.sleep)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638804.8961434, - "msecs": 896.0, - "relativeCreated": 45159.282425, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.sleep)): True ()", - "asctime": "2025-08-19 23:26:44,896" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.sleep)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638804.8962593, - "msecs": 896.0, - "relativeCreated": 45159.398371, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.sleep)): result = True ()", - "asctime": "2025-08-19 23:26:44,896" - } - ], - "time_consumption": 5.030632019042969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638804.8964124, - "msecs": 896.0, - "relativeCreated": 45159.551303, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to False", - "asctime": "2025-08-19 23:26:44,896", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.sleep) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638805.097099, - "msecs": 97.0, - "relativeCreated": 45360.237982, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffw.sleep) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:45,097", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.8965123, - "msecs": 896.0, - "relativeCreated": 45159.651242, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:44,896" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.8982716, - "msecs": 898.0, - "relativeCreated": 45161.410394, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:44,898" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638804.8984997, - "msecs": 898.0, - "relativeCreated": 45161.638846, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:44,898" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.8990977, - "msecs": 899.0, - "relativeCreated": 45162.236708, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:44,899" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.940027, - "msecs": 940.0, - "relativeCreated": 45203.165889, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:44,940" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", + "zigbee_ffe/ffe/livingroom/floor_light_1", "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", @@ -64600,778 +7315,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638804.9401567, - "msecs": 940.0, - "relativeCreated": 45203.295578, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:44,940" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.9403002, - "msecs": 940.0, - "relativeCreated": 45203.439211, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:44,940" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638804.9405208, - "msecs": 940.0, - "relativeCreated": 45203.659823, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:44,940" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.sleep)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638805.0969605, - "msecs": 96.0, - "relativeCreated": 45360.09958, - "thread": 131449228267776, + "created": 1755888840.0398195, + "msecs": 39.0, + "relativeCreated": 1914.628813, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.sleep)): False ()", - "asctime": "2025-08-19 23:26:45,096" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,039" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.sleep)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638805.0970588, - "msecs": 97.0, - "relativeCreated": 45360.197737, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.sleep)): result = False ()", - "asctime": "2025-08-19 23:26:45,097" - } - ], - "time_consumption": 4.029273986816406e-05 - } - ], - "time_consumption": 0.6020541191101074, - "time_start": "2025-08-19 23:26:44,495", - "time_finished": "2025-08-19 23:26:45,097" - }, - "REQ-0122": { - "name": "__tLogger__", - "msg": "REQ-0122", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638805.0973256, - "msecs": 97.0, - "relativeCreated": 45360.464445, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0122", - "asctime": "2025-08-19 23:26:45,097", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638805.1978319, - "msecs": 197.0, - "relativeCreated": 45460.970898, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:45,197", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.relay.0.set", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffw/sleep/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.0975068, - "msecs": 97.0, - "relativeCreated": 45360.645917, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:45,097" - } - ], - "time_consumption": 0.10032510757446289 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638805.2984064, - "msecs": 298.0, - "relativeCreated": 45561.54534, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:45,298", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638805.298219, - "msecs": 298.0, - "relativeCreated": 45561.358088, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:45,298" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638805.2983549, - "msecs": 298.0, - "relativeCreated": 45561.493902, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:45,298" - } - ], - "time_consumption": 5.14984130859375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffw.sleep)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638805.2985103, - "msecs": 298.0, - "relativeCreated": 45561.649359, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.sleep) to True", - "asctime": "2025-08-19 23:26:45,298", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638805.49944, - "msecs": 499.0, - "relativeCreated": 45762.578845, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:45,499", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.2986264, - "msecs": 298.0, - "relativeCreated": 45561.765414, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:45,298" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.2989228, - "msecs": 298.0, - "relativeCreated": 45562.061701, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:45,298" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.2997355, - "msecs": 299.0, - "relativeCreated": 45562.87456, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:45,299" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.3000877, - "msecs": 300.0, - "relativeCreated": 45563.226901, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:45,300" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.300995, - "msecs": 300.0, - "relativeCreated": 45564.1342, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:45,300" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.3011851, - "msecs": 301.0, - "relativeCreated": 45564.324143, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:45,301" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.3014896, - "msecs": 301.0, - "relativeCreated": 45564.628648, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:45,301" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.3019726, - "msecs": 301.0, - "relativeCreated": 45565.111683, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:45,301" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638805.4992535, - "msecs": 499.0, - "relativeCreated": 45762.392631, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): True ()", - "asctime": "2025-08-19 23:26:45,499" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638805.499394, - "msecs": 499.0, - "relativeCreated": 45762.532959, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = True ()", - "asctime": "2025-08-19 23:26:45,499" - } - ], - "time_consumption": 4.601478576660156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffw.sleep)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638805.4995456, - "msecs": 499.0, - "relativeCreated": 45762.684582, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.sleep) to False", - "asctime": "2025-08-19 23:26:45,499", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638805.7002103, - "msecs": 700.0, - "relativeCreated": 45963.349434, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:45,700", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.4996655, - "msecs": 499.0, - "relativeCreated": 45762.80439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:45,499" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.5003967, - "msecs": 500.0, - "relativeCreated": 45763.535763, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:45,500" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.5018196, - "msecs": 501.0, - "relativeCreated": 45764.958752, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:45,501" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", + "zigbee_ffe/ffe/livingroom/floor_light_2", "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", @@ -65383,23 +7342,23 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638805.502087, - "msecs": 502.0, - "relativeCreated": 45765.226248, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", + "created": 1755888840.040078, + "msecs": 40.0, + "relativeCreated": 1914.886935, + "thread": 133814251192576, + "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:45,502" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,040" }, { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffw/sleep/main_light/state", - "b'false'" + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -65408,24 +7367,105 @@ "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.502383, - "msecs": 502.0, - "relativeCreated": 45765.522167, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", + "lineno": 75, + "funcName": "send", + "created": 1755888840.0402088, + "msecs": 40.0, + "relativeCreated": 1915.018029, + "thread": 133814251192576, + "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:45,502" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,040" }, { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.0403368, + "msecs": 40.0, + "relativeCreated": 1915.146049, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,040" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.0404572, + "msecs": 40.0, + "relativeCreated": 1915.266462, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,040" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.0405617, + "msecs": 40.0, + "relativeCreated": 1915.370974, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,040" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_ffw/ffw/sleep/window_light", + "zigbee_ffe/ffe/livingroom/floor_light_1", "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", @@ -65437,4078 +7477,185 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638805.5028841, - "msecs": 502.0, - "relativeCreated": 45766.023203, - "thread": 131449202394816, + "created": 1755888840.0412395, + "msecs": 41.0, + "relativeCreated": 1916.048882, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:45,502" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,041" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for videv/ffw/sleep/main_light", - "False", - "" + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638805.7000582, - "msecs": 700.0, - "relativeCreated": 45963.197184, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.0415885, + "msecs": 41.0, + "relativeCreated": 1916.3977, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): False ()", - "asctime": "2025-08-19 23:26:45,700" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,041" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "False", - "" + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638805.7001667, - "msecs": 700.0, - "relativeCreated": 45963.30558, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.0833023, + "msecs": 83.0, + "relativeCreated": 1958.111252, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = False ()", - "asctime": "2025-08-19 23:26:45,700" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,083" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.0836477, + "msecs": 83.0, + "relativeCreated": 1958.456919, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,083" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.0838778, + "msecs": 83.0, + "relativeCreated": 1958.687174, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,083" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.0840583, + "msecs": 84.0, + "relativeCreated": 1958.867479, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,084" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.0842633, + "msecs": 84.0, + "relativeCreated": 1959.072621, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:54:00,084" } ], - "time_consumption": 4.363059997558594e-05 - } - ], - "time_consumption": 0.6028847694396973, - "time_start": "2025-08-19 23:26:45,097", - "time_finished": "2025-08-19 23:26:45,700" - }, - "REQ-0123": { - "name": "__tLogger__", - "msg": "REQ-0123", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638805.7003953, - "msecs": 700.0, - "relativeCreated": 45963.534182, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0123", - "asctime": "2025-08-19 23:26:45,700", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638805.8011374, - "msecs": 801.0, - "relativeCreated": 46064.276519, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:45,801", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.700494, - "msecs": 700.0, - "relativeCreated": 45963.633195, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:45,700" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.7007413, - "msecs": 700.0, - "relativeCreated": 45963.880341, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0}", - "asctime": "2025-08-19 23:26:45,700" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.7012572, - "msecs": 701.0, - "relativeCreated": 45964.396145, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:45,701" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.7016797, - "msecs": 701.0, - "relativeCreated": 45964.818723, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", - "asctime": "2025-08-19 23:26:45,701" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.7424161, - "msecs": 742.0, - "relativeCreated": 46005.555032, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:45,742" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.7426708, - "msecs": 742.0, - "relativeCreated": 46005.809774, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:45,742" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.7429996, - "msecs": 742.0, - "relativeCreated": 46006.138632, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:45,742" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/window_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.743551, - "msecs": 743.0, - "relativeCreated": 46006.689886, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:45,743" - } - ], - "time_consumption": 0.0575864315032959 + "time_consumption": 0.056767940521240234 }, { "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638805.9021404, - "msecs": 902.0, - "relativeCreated": 46165.279448, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:45,902", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.8014147, - "msecs": 801.0, - "relativeCreated": 46064.553653, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:45,801" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638805.8017232, - "msecs": 801.0, - "relativeCreated": 46064.862205, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0}", - "asctime": "2025-08-19 23:26:45,801" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.8038435, - "msecs": 803.0, - "relativeCreated": 46066.982709, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:45,803" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.8042054, - "msecs": 804.0, - "relativeCreated": 46067.344331, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", - "asctime": "2025-08-19 23:26:45,804" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638805.8456976, - "msecs": 845.0, - "relativeCreated": 46108.836637, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:45,845" - } - ], - "time_consumption": 0.0564427375793457 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638806.0026557, - "msecs": 2.0, - "relativeCreated": 46265.794626, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:46,002", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638806.0024927, - "msecs": 2.0, - "relativeCreated": 46265.631618, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:46,002" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638806.0025892, - "msecs": 2.0, - "relativeCreated": 46265.728204, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:46,002" - } - ], - "time_consumption": 6.651878356933594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638806.0027354, - "msecs": 2.0, - "relativeCreated": 46265.874344, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to 0", - "asctime": "2025-08-19 23:26:46,002", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638806.2033622, - "msecs": 203.0, - "relativeCreated": 46466.501223, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:46,203", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.0028205, - "msecs": 2.0, - "relativeCreated": 46265.959571, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:26:46,002" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.0042913, - "msecs": 4.0, - "relativeCreated": 46267.430213, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:46,004" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 1.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.00449, - "msecs": 4.0, - "relativeCreated": 46267.629032, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0}", - "asctime": "2025-08-19 23:26:46,004" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.0049748, - "msecs": 4.0, - "relativeCreated": 46268.113818, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", - "asctime": "2025-08-19 23:26:46,004" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.0470557, - "msecs": 47.0, - "relativeCreated": 46310.194584, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:46,047" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638806.2032006, - "msecs": 203.0, - "relativeCreated": 46466.339394, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/sleep/main_light): 0 ()", - "asctime": "2025-08-19 23:26:46,203" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638806.203315, - "msecs": 203.0, - "relativeCreated": 46466.453829, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/sleep/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:46,203" - } - ], - "time_consumption": 4.7206878662109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638806.2034593, - "msecs": 203.0, - "relativeCreated": 46466.598417, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to 20", - "asctime": "2025-08-19 23:26:46,203", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638806.4041917, - "msecs": 404.0, - "relativeCreated": 46667.330806, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:46,404", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.2035754, - "msecs": 203.0, - "relativeCreated": 46466.714411, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:26:46,203" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.2055054, - "msecs": 205.0, - "relativeCreated": 46468.644292, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:46,205" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 52.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.2057679, - "msecs": 205.0, - "relativeCreated": 46468.906922, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0}", - "asctime": "2025-08-19 23:26:46,205" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.2064028, - "msecs": 206.0, - "relativeCreated": 46469.541945, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", - "asctime": "2025-08-19 23:26:46,206" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.2482443, - "msecs": 248.0, - "relativeCreated": 46511.383242, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:46,248" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638806.4040158, - "msecs": 404.0, - "relativeCreated": 46667.154892, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/sleep/main_light): 20 ()", - "asctime": "2025-08-19 23:26:46,404" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638806.4041445, - "msecs": 404.0, - "relativeCreated": 46667.283715, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/sleep/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:46,404" - } - ], - "time_consumption": 4.7206878662109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638806.4043157, - "msecs": 404.0, - "relativeCreated": 46667.454631, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to 40", - "asctime": "2025-08-19 23:26:46,404", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638806.605201, - "msecs": 605.0, - "relativeCreated": 46868.339935, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:46,605", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.4044194, - "msecs": 404.0, - "relativeCreated": 46667.558248, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:26:46,404" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.4067535, - "msecs": 406.0, - "relativeCreated": 46669.892624, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:46,406" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 102.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.4070132, - "msecs": 407.0, - "relativeCreated": 46670.152241, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0}", - "asctime": "2025-08-19 23:26:46,407" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.4075277, - "msecs": 407.0, - "relativeCreated": 46670.666734, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", - "asctime": "2025-08-19 23:26:46,407" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.4483578, - "msecs": 448.0, - "relativeCreated": 46711.496809, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:46,448" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638806.6050146, - "msecs": 605.0, - "relativeCreated": 46868.153632, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/sleep/main_light): 40 ()", - "asctime": "2025-08-19 23:26:46,605" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638806.6051514, - "msecs": 605.0, - "relativeCreated": 46868.290609, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/sleep/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:46,605" - } - ], - "time_consumption": 4.9591064453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638806.605307, - "msecs": 605.0, - "relativeCreated": 46868.446152, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to 60", - "asctime": "2025-08-19 23:26:46,605", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638806.8062284, - "msecs": 806.0, - "relativeCreated": 47069.367401, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:46,806", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.6054122, - "msecs": 605.0, - "relativeCreated": 46868.551307, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:26:46,605" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.607808, - "msecs": 607.0, - "relativeCreated": 46870.947044, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:46,607" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 153.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.6080446, - "msecs": 608.0, - "relativeCreated": 46871.18367, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0}", - "asctime": "2025-08-19 23:26:46,608" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.6087008, - "msecs": 608.0, - "relativeCreated": 46871.839752, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", - "asctime": "2025-08-19 23:26:46,608" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.6497467, - "msecs": 649.0, - "relativeCreated": 46912.885722, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:46,649" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638806.806031, - "msecs": 806.0, - "relativeCreated": 47069.170234, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/sleep/main_light): 60 ()", - "asctime": "2025-08-19 23:26:46,806" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638806.8061757, - "msecs": 806.0, - "relativeCreated": 47069.314637, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/sleep/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:46,806" - } - ], - "time_consumption": 5.269050598144531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638806.8063424, - "msecs": 806.0, - "relativeCreated": 47069.48141, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to 80", - "asctime": "2025-08-19 23:26:46,806", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638807.0073876, - "msecs": 7.0, - "relativeCreated": 47270.526543, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:47,007", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.8064778, - "msecs": 806.0, - "relativeCreated": 47069.616897, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:26:46,806" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.8089554, - "msecs": 808.0, - "relativeCreated": 47072.094315, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:46,808" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 203.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638806.8091946, - "msecs": 809.0, - "relativeCreated": 47072.333489, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0}", - "asctime": "2025-08-19 23:26:46,809" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.8097448, - "msecs": 809.0, - "relativeCreated": 47072.88383, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", - "asctime": "2025-08-19 23:26:46,809" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638806.851327, - "msecs": 851.0, - "relativeCreated": 47114.465946, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:46,851" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638807.0071886, - "msecs": 7.0, - "relativeCreated": 47270.327557, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/sleep/main_light): 80 ()", - "asctime": "2025-08-19 23:26:47,007" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638807.0073133, - "msecs": 7.0, - "relativeCreated": 47270.452078, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/sleep/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:47,007" - } - ], - "time_consumption": 7.43865966796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/sleep/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638807.007491, - "msecs": 7.0, - "relativeCreated": 47270.629975, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/sleep/main_light to 100", - "asctime": "2025-08-19 23:26:47,007", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638807.208361, - "msecs": 208.0, - "relativeCreated": 47471.500048, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/sleep/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:47,208", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638807.0076032, - "msecs": 7.0, - "relativeCreated": 47270.742217, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:47,007" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.0100327, - "msecs": 10.0, - "relativeCreated": 47273.171751, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:47,010" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638807.010265, - "msecs": 10.0, - "relativeCreated": 47273.404103, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0}", - "asctime": "2025-08-19 23:26:47,010" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.010822, - "msecs": 10.0, - "relativeCreated": 47273.961039, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", - "asctime": "2025-08-19 23:26:47,010" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.0520136, - "msecs": 52.0, - "relativeCreated": 47315.152542, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:47,052" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638807.2081835, - "msecs": 208.0, - "relativeCreated": 47471.322509, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/sleep/main_light): 100 ()", - "asctime": "2025-08-19 23:26:47,208" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/sleep/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638807.2083132, - "msecs": 208.0, - "relativeCreated": 47471.452248, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/sleep/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:47,208" - } - ], - "time_consumption": 4.76837158203125e-05 - } - ], - "time_consumption": 1.5079655647277832, - "time_start": "2025-08-19 23:26:45,700", - "time_finished": "2025-08-19 23:26:47,208" - }, - "REQ-0124": { - "name": "__tLogger__", - "msg": "REQ-0124", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638807.2086267, - "msecs": 208.0, - "relativeCreated": 47471.765589, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0124", - "asctime": "2025-08-19 23:26:47,208", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638807.3088756, - "msecs": 308.0, - "relativeCreated": 47572.014539, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:47,308", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638807.409665, - "msecs": 409.0, - "relativeCreated": 47672.80414, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:47,409", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638807.3091803, - "msecs": 309.0, - "relativeCreated": 47572.319241, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:47,309" - } - ], - "time_consumption": 0.10048484802246094 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638807.5104194, - "msecs": 510.0, - "relativeCreated": 47773.558556, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:47,510", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638807.510225, - "msecs": 510.0, - "relativeCreated": 47773.364152, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:47,510" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638807.510367, - "msecs": 510.0, - "relativeCreated": 47773.505952, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:47,510" - } - ], - "time_consumption": 5.245208740234375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638807.5105312, - "msecs": 510.0, - "relativeCreated": 47773.670081, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/sleep/main_light to 0", - "asctime": "2025-08-19 23:26:47,510", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638807.7115784, - "msecs": 711.0, - "relativeCreated": 47974.717428, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:47,711", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 1.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638807.51071, - "msecs": 510.0, - "relativeCreated": 47773.848984, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0}", - "asctime": "2025-08-19 23:26:47,510" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.511762, - "msecs": 511.0, - "relativeCreated": 47774.900863, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", - "asctime": "2025-08-19 23:26:47,511" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.513349, - "msecs": 513.0, - "relativeCreated": 47776.488167, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:47,513" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638807.7113724, - "msecs": 711.0, - "relativeCreated": 47974.511266, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): 0 ()", - "asctime": "2025-08-19 23:26:47,711" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638807.7115068, - "msecs": 711.0, - "relativeCreated": 47974.645859, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:47,711" - } - ], - "time_consumption": 7.152557373046875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638807.7116826, - "msecs": 711.0, - "relativeCreated": 47974.821502, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/sleep/main_light to 20", - "asctime": "2025-08-19 23:26:47,711", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638807.9126837, - "msecs": 912.0, - "relativeCreated": 48175.822815, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:47,912", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 52.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638807.7118485, - "msecs": 711.0, - "relativeCreated": 47974.987339, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0}", - "asctime": "2025-08-19 23:26:47,711" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.7127368, - "msecs": 712.0, - "relativeCreated": 47975.875704, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", - "asctime": "2025-08-19 23:26:47,712" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.7139726, - "msecs": 713.0, - "relativeCreated": 47977.11157, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:47,713" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638807.9124901, - "msecs": 912.0, - "relativeCreated": 48175.629224, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): 20 ()", - "asctime": "2025-08-19 23:26:47,912" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638807.9126313, - "msecs": 912.0, - "relativeCreated": 48175.770412, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:47,912" - } - ], - "time_consumption": 5.245208740234375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638807.912799, - "msecs": 912.0, - "relativeCreated": 48175.938075, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/sleep/main_light to 40", - "asctime": "2025-08-19 23:26:47,912", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638808.113929, - "msecs": 113.0, - "relativeCreated": 48377.067968, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:48,113", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 102.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638807.9129858, - "msecs": 912.0, - "relativeCreated": 48176.124951, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0}", - "asctime": "2025-08-19 23:26:47,912" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.914128, - "msecs": 914.0, - "relativeCreated": 48177.267155, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", - "asctime": "2025-08-19 23:26:47,914" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638807.9157574, - "msecs": 915.0, - "relativeCreated": 48178.896284, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:47,915" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638808.1137044, - "msecs": 113.0, - "relativeCreated": 48376.843498, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): 40 ()", - "asctime": "2025-08-19 23:26:48,113" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638808.1138456, - "msecs": 113.0, - "relativeCreated": 48376.98439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:48,113" - } - ], - "time_consumption": 8.344650268554688e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638808.114063, - "msecs": 114.0, - "relativeCreated": 48377.202157, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/sleep/main_light to 60", - "asctime": "2025-08-19 23:26:48,114", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638808.315113, - "msecs": 315.0, - "relativeCreated": 48578.251901, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:48,315", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 153.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638808.1142216, - "msecs": 114.0, - "relativeCreated": 48377.360569, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0}", - "asctime": "2025-08-19 23:26:48,114" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.1153529, - "msecs": 115.0, - "relativeCreated": 48378.491925, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", - "asctime": "2025-08-19 23:26:48,115" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.1168327, - "msecs": 116.0, - "relativeCreated": 48379.971865, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:48,116" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638808.3148584, - "msecs": 314.0, - "relativeCreated": 48577.997474, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): 60 ()", - "asctime": "2025-08-19 23:26:48,314" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638808.315039, - "msecs": 315.0, - "relativeCreated": 48578.177943, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:48,315" - } - ], - "time_consumption": 7.414817810058594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638808.3152301, - "msecs": 315.0, - "relativeCreated": 48578.369225, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/sleep/main_light to 80", - "asctime": "2025-08-19 23:26:48,315", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638808.516197, - "msecs": 516.0, - "relativeCreated": 48779.335981, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:48,516", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 203.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638808.3153915, - "msecs": 315.0, - "relativeCreated": 48578.530451, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0}", - "asctime": "2025-08-19 23:26:48,315" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.3164895, - "msecs": 316.0, - "relativeCreated": 48579.628579, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", - "asctime": "2025-08-19 23:26:48,316" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.318152, - "msecs": 318.0, - "relativeCreated": 48581.290942, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:48,318" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638808.5160062, - "msecs": 516.0, - "relativeCreated": 48779.14514, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): 80 ()", - "asctime": "2025-08-19 23:26:48,516" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638808.5161452, - "msecs": 516.0, - "relativeCreated": 48779.284171, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:48,516" - } - ], - "time_consumption": 5.173683166503906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638808.516309, - "msecs": 516.0, - "relativeCreated": 48779.44795, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/sleep/main_light to 100", - "asctime": "2025-08-19 23:26:48,516", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/sleep/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638808.7173069, - "msecs": 717.0, - "relativeCreated": 48980.44577, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/sleep/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:48,717", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 254.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638808.516512, - "msecs": 516.0, - "relativeCreated": 48779.651097, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0}", - "asctime": "2025-08-19 23:26:48,516" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.5173974, - "msecs": 517.0, - "relativeCreated": 48780.536434, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", - "asctime": "2025-08-19 23:26:48,517" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.5189734, - "msecs": 518.0, - "relativeCreated": 48782.112327, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:48,518" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638808.717127, - "msecs": 717.0, - "relativeCreated": 48980.2661, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/sleep/main_light): 100 ()", - "asctime": "2025-08-19 23:26:48,717" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/sleep/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638808.717258, - "msecs": 717.0, - "relativeCreated": 48980.396894, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/sleep/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:48,717" - } - ], - "time_consumption": 4.887580871582031e-05 - } - ], - "time_consumption": 1.5086801052093506, - "time_start": "2025-08-19 23:26:47,208", - "time_finished": "2025-08-19 23:26:48,717" - }, - "REQ-0141": { - "name": "__tLogger__", - "msg": "REQ-0141", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638808.717545, - "msecs": 717.0, - "relativeCreated": 48980.683983, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0141", - "asctime": "2025-08-19 23:26:48,717", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638808.8182316, - "msecs": 818.0, - "relativeCreated": 49081.3706, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:48,818", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638808.7176723, - "msecs": 717.0, - "relativeCreated": 48980.81143, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:48,717" - }, - { - "name": "smart_brain.devices.shellies.ffw.julian.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638808.71788, - "msecs": 717.0, - "relativeCreated": 48981.019116, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:48,717" - } - ], - "time_consumption": 0.10035157203674316 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638808.9189446, - "msecs": 918.0, - "relativeCreated": 49182.083485, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:48,918", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638808.9187143, - "msecs": 918.0, - "relativeCreated": 49181.853367, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:48,918" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638808.918855, - "msecs": 918.0, - "relativeCreated": 49181.993912, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:48,918" - } - ], - "time_consumption": 8.96453857421875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638808.9190595, - "msecs": 919.0, - "relativeCreated": 49182.198484, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to True", - "asctime": "2025-08-19 23:26:48,919", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.hulian) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638809.1197836, - "msecs": 119.0, - "relativeCreated": 49382.922763, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffw.hulian) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:49,119", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638808.9191706, - "msecs": 919.0, - "relativeCreated": 49182.309485, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:48,919" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.921702, - "msecs": 921.0, - "relativeCreated": 49184.840795, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:48,921" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638808.9219244, - "msecs": 921.0, - "relativeCreated": 49185.063481, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:48,921" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638808.9221878, - "msecs": 922.0, - "relativeCreated": 49185.326803, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:48,922" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.922726, - "msecs": 922.0, - "relativeCreated": 49185.864891, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:48,922" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.9230027, - "msecs": 923.0, - "relativeCreated": 49186.141717, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:48,923" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638808.963653, - "msecs": 963.0, - "relativeCreated": 49226.792058, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:48,963" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.0047324, - "msecs": 4.0, - "relativeCreated": 49267.871527, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:49,004" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.0051265, - "msecs": 5.0, - "relativeCreated": 49268.265487, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:26:49,005" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.hulian)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638809.119618, - "msecs": 119.0, - "relativeCreated": 49382.756952, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.hulian)): True ()", - "asctime": "2025-08-19 23:26:49,119" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.hulian)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638809.1197333, - "msecs": 119.0, - "relativeCreated": 49382.872185, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.hulian)): result = True ()", - "asctime": "2025-08-19 23:26:49,119" - } - ], - "time_consumption": 5.030632019042969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638809.1198878, - "msecs": 119.0, - "relativeCreated": 49383.02682, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to False", - "asctime": "2025-08-19 23:26:49,119", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.hulian) is correct (Content %s and Type is %s).", + "msg": "Value for ViDevLight.state (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", "args": [ "False", "" @@ -69522,157 +7669,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638809.3209927, - "msecs": 320.0, - "relativeCreated": 49584.131891, - "thread": 131449228267776, + "created": 1755888840.1413548, + "msecs": 141.0, + "relativeCreated": 2016.163955, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for Shelly Main Light (ffw.hulian) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:49,320", + "message": "Value for ViDevLight.state (ffe.livingroom.floorlamp) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:00,141", "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.1200123, - "msecs": 120.0, - "relativeCreated": 49383.151337, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:49,120" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.12216, - "msecs": 122.0, - "relativeCreated": 49385.298871, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:49,122" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.1223805, - "msecs": 122.0, - "relativeCreated": 49385.519457, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:49,122" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.1231966, - "msecs": 123.0, - "relativeCreated": 49386.335677, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:49,123" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.1643262, - "msecs": 164.0, - "relativeCreated": 49427.465232, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:49,164" - }, { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for Shelly Main Light (ffw.hulian)", + "Value for ViDevLight.state (ffe.livingroom.floorlamp)", "False", "" ], @@ -69685,3385 +7697,25 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638809.3207273, - "msecs": 320.0, - "relativeCreated": 49583.866215, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.hulian)): False ()", - "asctime": "2025-08-19 23:26:49,320" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.hulian)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638809.3208773, - "msecs": 320.0, - "relativeCreated": 49584.016384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.hulian)): result = False ()", - "asctime": "2025-08-19 23:26:49,320" - } - ], - "time_consumption": 0.00011539459228515625 - } - ], - "time_consumption": 0.603447675704956, - "time_start": "2025-08-19 23:26:48,717", - "time_finished": "2025-08-19 23:26:49,320" - }, - "REQ-0142": { - "name": "__tLogger__", - "msg": "REQ-0142", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638809.3212612, - "msecs": 321.0, - "relativeCreated": 49584.400034, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0142", - "asctime": "2025-08-19 23:26:49,321", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638809.4218347, - "msecs": 421.0, - "relativeCreated": 49684.97371, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:49,421", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.3214393, - "msecs": 321.0, - "relativeCreated": 49584.578361, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:49,321" - } - ], - "time_consumption": 0.10039544105529785 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638809.5226026, - "msecs": 522.0, - "relativeCreated": 49785.741563, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:49,522", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638809.5223827, - "msecs": 522.0, - "relativeCreated": 49785.521937, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:49,522" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638809.5225468, - "msecs": 522.0, - "relativeCreated": 49785.68582, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:49,522" - } - ], - "time_consumption": 5.5789947509765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffw.hulian)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638809.5227256, - "msecs": 522.0, - "relativeCreated": 49785.86466, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.hulian) to True", - "asctime": "2025-08-19 23:26:49,522", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638809.7240407, - "msecs": 724.0, - "relativeCreated": 49987.17972, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:49,724", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.5228572, - "msecs": 522.0, - "relativeCreated": 49785.996338, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:49,522" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.5232434, - "msecs": 523.0, - "relativeCreated": 49786.382649, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:49,523" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.5242348, - "msecs": 524.0, - "relativeCreated": 49787.37388, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:49,524" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.524622, - "msecs": 524.0, - "relativeCreated": 49787.760981, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:49,524" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.5256608, - "msecs": 525.0, - "relativeCreated": 49788.799634, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:49,525" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638809.7238066, - "msecs": 723.0, - "relativeCreated": 49986.945735, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): True ()", - "asctime": "2025-08-19 23:26:49,723" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638809.7239854, - "msecs": 723.0, - "relativeCreated": 49987.124421, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = True ()", - "asctime": "2025-08-19 23:26:49,723" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffw.hulian)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638809.7241495, - "msecs": 724.0, - "relativeCreated": 49987.288579, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.hulian) to False", - "asctime": "2025-08-19 23:26:49,724", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638809.9251738, - "msecs": 925.0, - "relativeCreated": 50188.312877, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:49,925", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.7242842, - "msecs": 724.0, - "relativeCreated": 49987.42316, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:49,724" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.725479, - "msecs": 725.0, - "relativeCreated": 49988.617816, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:49,725" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.7268524, - "msecs": 726.0, - "relativeCreated": 49989.991313, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:49,726" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638809.9249754, - "msecs": 924.0, - "relativeCreated": 50188.114478, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): False ()", - "asctime": "2025-08-19 23:26:49,924" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638809.9251187, - "msecs": 925.0, - "relativeCreated": 50188.257642, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = False ()", - "asctime": "2025-08-19 23:26:49,925" - } - ], - "time_consumption": 5.507469177246094e-05 - } - ], - "time_consumption": 0.6039125919342041, - "time_start": "2025-08-19 23:26:49,321", - "time_finished": "2025-08-19 23:26:49,925" - }, - "REQ-0143": { - "name": "__tLogger__", - "msg": "REQ-0143", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638809.9253905, - "msecs": 925.0, - "relativeCreated": 50188.529534, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0143", - "asctime": "2025-08-19 23:26:49,925", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638810.026199, - "msecs": 26.0, - "relativeCreated": 50289.338146, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:50,026", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.9255168, - "msecs": 925.0, - "relativeCreated": 50188.655754, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:49,925" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638809.9257874, - "msecs": 925.0, - "relativeCreated": 50188.926476, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:49,925" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.926645, - "msecs": 926.0, - "relativeCreated": 50189.78412, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:49,926" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.9270682, - "msecs": 927.0, - "relativeCreated": 50190.207139, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:49,927" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638809.968547, - "msecs": 968.0, - "relativeCreated": 50231.685966, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:49,968" - } - ], - "time_consumption": 0.05765199661254883 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638810.1272748, - "msecs": 127.0, - "relativeCreated": 50390.413657, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:50,127", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.0264938, - "msecs": 26.0, - "relativeCreated": 50289.632657, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:50,026" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.026807, - "msecs": 26.0, - "relativeCreated": 50289.946135, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:50,026" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.0290465, - "msecs": 29.0, - "relativeCreated": 50292.18554, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:50,029" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.0294, - "msecs": 29.0, - "relativeCreated": 50292.539045, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:50,029" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.0704298, - "msecs": 70.0, - "relativeCreated": 50333.568767, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:50,070" - } - ], - "time_consumption": 0.05684494972229004 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638810.2280297, - "msecs": 228.0, - "relativeCreated": 50491.16867, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:50,228", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638810.2277796, - "msecs": 227.0, - "relativeCreated": 50490.918619, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:50,227" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638810.227967, - "msecs": 227.0, - "relativeCreated": 50491.106063, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:50,227" - } - ], - "time_consumption": 6.270408630371094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638810.2281415, - "msecs": 228.0, - "relativeCreated": 50491.280619, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 0", - "asctime": "2025-08-19 23:26:50,228", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638810.4291353, - "msecs": 429.0, - "relativeCreated": 50692.274325, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:50,429", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.2282531, - "msecs": 228.0, - "relativeCreated": 50491.39226, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:26:50,228" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.230543, - "msecs": 230.0, - "relativeCreated": 50493.68173, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:26:50,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.2307782, - "msecs": 230.0, - "relativeCreated": 50493.917213, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:50,230" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.2314816, - "msecs": 231.0, - "relativeCreated": 50494.620706, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:50,231" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.273208, - "msecs": 273.0, - "relativeCreated": 50536.346885, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:50,273" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638810.4289396, - "msecs": 428.0, - "relativeCreated": 50692.078595, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 0 ()", - "asctime": "2025-08-19 23:26:50,428" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638810.4290829, - "msecs": 429.0, - "relativeCreated": 50692.221777, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:50,429" - } - ], - "time_consumption": 5.245208740234375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638810.429248, - "msecs": 429.0, - "relativeCreated": 50692.387118, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 20", - "asctime": "2025-08-19 23:26:50,429", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638810.6303692, - "msecs": 630.0, - "relativeCreated": 50893.508398, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:50,630", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.4293835, - "msecs": 429.0, - "relativeCreated": 50692.522464, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:26:50,429" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.4316573, - "msecs": 431.0, - "relativeCreated": 50694.796102, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:26:50,431" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.4319224, - "msecs": 431.0, - "relativeCreated": 50695.061322, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:50,431" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.4325871, - "msecs": 432.0, - "relativeCreated": 50695.726347, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:50,432" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.4741478, - "msecs": 474.0, - "relativeCreated": 50737.286895, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:50,474" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638810.6301622, - "msecs": 630.0, - "relativeCreated": 50893.301167, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 20 ()", - "asctime": "2025-08-19 23:26:50,630" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638810.6303186, - "msecs": 630.0, - "relativeCreated": 50893.457615, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:50,630" - } - ], - "time_consumption": 5.054473876953125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638810.6304746, - "msecs": 630.0, - "relativeCreated": 50893.613615, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 40", - "asctime": "2025-08-19 23:26:50,630", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638810.831524, - "msecs": 831.0, - "relativeCreated": 51094.662943, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:50,831", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.6305945, - "msecs": 630.0, - "relativeCreated": 50893.733599, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:26:50,630" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.6329937, - "msecs": 632.0, - "relativeCreated": 50896.132707, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:26:50,632" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.6332273, - "msecs": 633.0, - "relativeCreated": 50896.366197, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:50,633" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.6339304, - "msecs": 633.0, - "relativeCreated": 50897.069392, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:50,633" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.6752234, - "msecs": 675.0, - "relativeCreated": 50938.362215, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:50,675" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638810.831331, - "msecs": 831.0, - "relativeCreated": 51094.470122, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 40 ()", - "asctime": "2025-08-19 23:26:50,831" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638810.8314729, - "msecs": 831.0, - "relativeCreated": 51094.611956, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:50,831" - } - ], - "time_consumption": 5.1021575927734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638810.831663, - "msecs": 831.0, - "relativeCreated": 51094.801803, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 60", - "asctime": "2025-08-19 23:26:50,831", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638811.0328088, - "msecs": 32.0, - "relativeCreated": 51295.947645, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:51,032", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.831774, - "msecs": 831.0, - "relativeCreated": 51094.912989, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:26:50,831" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.8339896, - "msecs": 833.0, - "relativeCreated": 51097.128529, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:26:50,833" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638810.8342328, - "msecs": 834.0, - "relativeCreated": 51097.371785, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:50,834" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.83477, - "msecs": 834.0, - "relativeCreated": 51097.908813, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:50,834" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638810.8752785, - "msecs": 875.0, - "relativeCreated": 51138.417612, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:50,875" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638811.0326133, - "msecs": 32.0, - "relativeCreated": 51295.752285, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 60 ()", - "asctime": "2025-08-19 23:26:51,032" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638811.032757, - "msecs": 32.0, - "relativeCreated": 51295.896012, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:51,032" - } - ], - "time_consumption": 5.173683166503906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638811.0329602, - "msecs": 32.0, - "relativeCreated": 51296.099225, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 80", - "asctime": "2025-08-19 23:26:51,032", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638811.2340991, - "msecs": 234.0, - "relativeCreated": 51497.238177, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:51,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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638811.0330849, - "msecs": 33.0, - "relativeCreated": 51296.223846, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:26:51,033" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.0355608, - "msecs": 35.0, - "relativeCreated": 51298.699912, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:26:51,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638811.0358174, - "msecs": 35.0, - "relativeCreated": 51298.95653, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:51,035" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.0365896, - "msecs": 36.0, - "relativeCreated": 51299.728684, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:51,036" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.0782247, - "msecs": 78.0, - "relativeCreated": 51341.363536, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:51,078" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638811.2338858, - "msecs": 233.0, - "relativeCreated": 51497.024606, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 80 ()", - "asctime": "2025-08-19 23:26:51,233" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638811.2340498, - "msecs": 234.0, - "relativeCreated": 51497.188862, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:51,234" - } - ], - "time_consumption": 4.935264587402344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638811.2342246, - "msecs": 234.0, - "relativeCreated": 51497.363702, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 100", - "asctime": "2025-08-19 23:26:51,234", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638811.4352994, - "msecs": 435.0, - "relativeCreated": 51698.438389, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:51,435", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638811.2343392, - "msecs": 234.0, - "relativeCreated": 51497.478302, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:51,234" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.2366846, - "msecs": 236.0, - "relativeCreated": 51499.823632, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:26:51,236" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638811.2369473, - "msecs": 236.0, - "relativeCreated": 51500.086093, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:51,236" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.237481, - "msecs": 237.0, - "relativeCreated": 51500.620239, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:51,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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.2791882, - "msecs": 279.0, - "relativeCreated": 51542.327293, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:51,279" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638811.4350796, - "msecs": 435.0, - "relativeCreated": 51698.218569, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 100 ()", - "asctime": "2025-08-19 23:26:51,435" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638811.4352243, - "msecs": 435.0, - "relativeCreated": 51698.363223, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:51,435" - } - ], - "time_consumption": 7.510185241699219e-05 - } - ], - "time_consumption": 1.50990891456604, - "time_start": "2025-08-19 23:26:49,925", - "time_finished": "2025-08-19 23:26:51,435" - }, - "REQ-0144": { - "name": "__tLogger__", - "msg": "REQ-0144", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638811.4355586, - "msecs": 435.0, - "relativeCreated": 51698.697727, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0144", - "asctime": "2025-08-19 23:26:51,435", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638811.5358136, - "msecs": 535.0, - "relativeCreated": 51798.952644, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:51,535", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638811.6363876, - "msecs": 636.0, - "relativeCreated": 51899.526545, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:26:51,636", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638811.536055, - "msecs": 536.0, - "relativeCreated": 51799.194018, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:26:51,536" - } - ], - "time_consumption": 0.10033249855041504 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638811.7371647, - "msecs": 737.0, - "relativeCreated": 52000.303833, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:26:51,737", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638811.736936, - "msecs": 736.0, - "relativeCreated": 52000.07526, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:26:51,736" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638811.7371075, - "msecs": 737.0, - "relativeCreated": 52000.24657, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:26:51,737" - } - ], - "time_consumption": 5.7220458984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638811.7372804, - "msecs": 737.0, - "relativeCreated": 52000.419388, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 0", - "asctime": "2025-08-19 23:26:51,737", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638811.9383924, - "msecs": 938.0, - "relativeCreated": 52201.53129, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:51,938", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638811.7374358, - "msecs": 737.0, - "relativeCreated": 52000.575005, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:51,737" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.7383943, - "msecs": 738.0, - "relativeCreated": 52001.533276, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:51,738" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.7397287, - "msecs": 739.0, - "relativeCreated": 52002.867603, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:26:51,739" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638811.9381871, - "msecs": 938.0, - "relativeCreated": 52201.32607, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 0 ()", - "asctime": "2025-08-19 23:26:51,938" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638811.9383318, - "msecs": 938.0, - "relativeCreated": 52201.470894, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:51,938" - } - ], - "time_consumption": 6.0558319091796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638811.9384933, - "msecs": 938.0, - "relativeCreated": 52201.632074, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 20", - "asctime": "2025-08-19 23:26:51,938", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638812.139631, - "msecs": 139.0, - "relativeCreated": 52402.770171, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:26:52,139", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638811.9386458, - "msecs": 938.0, - "relativeCreated": 52201.784642, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:51,938" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.9395516, - "msecs": 939.0, - "relativeCreated": 52202.690411, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:51,939" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638811.9408262, - "msecs": 940.0, - "relativeCreated": 52203.965085, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:26:51,940" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638812.1394296, - "msecs": 139.0, - "relativeCreated": 52402.56862, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 20 ()", - "asctime": "2025-08-19 23:26:52,139" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638812.139577, - "msecs": 139.0, - "relativeCreated": 52402.715812, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 20 ()", - "asctime": "2025-08-19 23:26:52,139" - } - ], - "time_consumption": 5.412101745605469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638812.1397393, - "msecs": 139.0, - "relativeCreated": 52402.878369, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 40", - "asctime": "2025-08-19 23:26:52,139", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638812.3410356, - "msecs": 341.0, - "relativeCreated": 52604.174591, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:26:52,341", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638812.1399534, - "msecs": 139.0, - "relativeCreated": 52403.092296, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:52,139" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.1410391, + "created": 1755888840.1412568, "msecs": 141.0, - "relativeCreated": 52404.178216, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:52,141" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.1424284, - "msecs": 142.0, - "relativeCreated": 52405.567495, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:26:52,142" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638812.3407767, - "msecs": 340.0, - "relativeCreated": 52603.915629, - "thread": 131449228267776, + "relativeCreated": 2016.065979, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 40 ()", - "asctime": "2025-08-19 23:26:52,340" + "message": "Result (Value for ViDevLight.state (ffe.livingroom.floorlamp)): False ()", + "asctime": "2025-08-22 20:54:00,141" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/ffw/julian/main_light", + "Value for ViDevLight.state (ffe.livingroom.floorlamp)", "=", - "40", - "" + "False", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -73074,619 +7726,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638812.3409746, - "msecs": 340.0, - "relativeCreated": 52604.113545, - "thread": 131449228267776, + "created": 1755888840.1413112, + "msecs": 141.0, + "relativeCreated": 2016.120555, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 40 ()", - "asctime": "2025-08-19 23:26:52,340" + "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.floorlamp)): result = False ()", + "asctime": "2025-08-22 20:54:00,141" } ], - "time_consumption": 6.103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638812.3411539, - "msecs": 341.0, - "relativeCreated": 52604.292829, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 60", - "asctime": "2025-08-19 23:26:52,341", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638812.542185, - "msecs": 542.0, - "relativeCreated": 52805.323861, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:26:52,542", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638812.341325, - "msecs": 341.0, - "relativeCreated": 52604.463943, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:52,341" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.342376, - "msecs": 342.0, - "relativeCreated": 52605.514868, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:52,342" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.3437123, - "msecs": 343.0, - "relativeCreated": 52606.851291, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:26:52,343" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638812.542001, - "msecs": 542.0, - "relativeCreated": 52805.139904, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 60 ()", - "asctime": "2025-08-19 23:26:52,542" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638812.5421333, - "msecs": 542.0, - "relativeCreated": 52805.272257, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 60 ()", - "asctime": "2025-08-19 23:26:52,542" - } - ], - "time_consumption": 5.173683166503906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638812.5422928, - "msecs": 542.0, - "relativeCreated": 52805.431619, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 80", - "asctime": "2025-08-19 23:26:52,542", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638812.7433853, - "msecs": 743.0, - "relativeCreated": 53006.524269, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:26:52,743", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638812.5424478, - "msecs": 542.0, - "relativeCreated": 52805.586897, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:52,542" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.5433133, - "msecs": 543.0, - "relativeCreated": 52806.452162, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:52,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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.5444577, - "msecs": 544.0, - "relativeCreated": 52807.596622, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:26:52,544" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638812.7432003, - "msecs": 743.0, - "relativeCreated": 53006.339381, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 80 ()", - "asctime": "2025-08-19 23:26:52,743" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638812.743336, - "msecs": 743.0, - "relativeCreated": 53006.474925, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 80 ()", - "asctime": "2025-08-19 23:26:52,743" - } - ], - "time_consumption": 4.935264587402344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638812.7435198, - "msecs": 743.0, - "relativeCreated": 53006.658868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 100", - "asctime": "2025-08-19 23:26:52,743", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638812.9446285, - "msecs": 944.0, - "relativeCreated": 53207.76747, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:26:52,944", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638812.7436788, - "msecs": 743.0, - "relativeCreated": 53006.817603, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:52,743" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.7446594, - "msecs": 744.0, - "relativeCreated": 53007.798506, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:52,744" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638812.7460542, - "msecs": 746.0, - "relativeCreated": 53009.193033, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:26:52,746" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638812.9444287, - "msecs": 944.0, - "relativeCreated": 53207.567918, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 100 ()", - "asctime": "2025-08-19 23:26:52,944" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638812.9445755, - "msecs": 944.0, - "relativeCreated": 53207.71452, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 100 ()", - "asctime": "2025-08-19 23:26:52,944" - } - ], - "time_consumption": 5.2928924560546875e-05 + "time_consumption": 4.363059997558594e-05 } ], - "time_consumption": 1.5090699195861816, - "time_start": "2025-08-19 23:26:51,435", - "time_finished": "2025-08-19 23:26:52,944" + "time_consumption": 0.3044734001159668, + "time_start": "2025-08-22 20:53:59,836", + "time_finished": "2025-08-22 20:54:00,141" }, - "REQ-0145": { + "Shelly.relay/0 (ffe.livingroom.main_light) -> Light.state (ffe.livingroom.floor_light)": { "name": "__tLogger__", - "msg": "REQ-0145", + "msg": "Shelly.relay/0 (ffe.livingroom.main_light) -> Light.state (ffe.livingroom.floor_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -73697,3210 +7758,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638812.9448848, - "msecs": 944.0, - "relativeCreated": 53208.023743, - "thread": 131449228267776, + "created": 1755888840.1416233, + "msecs": 141.0, + "relativeCreated": 2016.432567, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0145", - "asctime": "2025-08-19 23:26:52,944", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638813.0453448, - "msecs": 45.0, - "relativeCreated": 53308.483841, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:53,045", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638813.1463962, - "msecs": 146.0, - "relativeCreated": 53409.535241, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:53,146", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.0456612, - "msecs": 45.0, - "relativeCreated": 53308.800184, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:53,045" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.046002, - "msecs": 46.0, - "relativeCreated": 53309.14085, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:53,046" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.0481207, - "msecs": 48.0, - "relativeCreated": 53311.259888, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:53,048" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.048456, - "msecs": 48.0, - "relativeCreated": 53311.594866, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:53,048" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.0904448, - "msecs": 90.0, - "relativeCreated": 53353.583913, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:53,090" - } - ], - "time_consumption": 0.05595135688781738 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638813.24722, - "msecs": 247.0, - "relativeCreated": 53510.359058, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:53,247", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638813.246973, - "msecs": 246.0, - "relativeCreated": 53510.111883, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:53,246" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638813.2471654, - "msecs": 247.0, - "relativeCreated": 53510.30445, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:53,247" - } - ], - "time_consumption": 5.459785461425781e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638813.24733, - "msecs": 247.0, - "relativeCreated": 53510.469027, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 0", - "asctime": "2025-08-19 23:26:53,247", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638813.4482887, - "msecs": 448.0, - "relativeCreated": 53711.427712, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:53,448", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.2474399, - "msecs": 247.0, - "relativeCreated": 53510.578885, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 0", - "asctime": "2025-08-19 23:26:53,247" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.2497368, - "msecs": 249.0, - "relativeCreated": 53512.875703, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:26:53,249" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.249973, - "msecs": 249.0, - "relativeCreated": 53513.111944, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:53,249" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.2505043, - "msecs": 250.0, - "relativeCreated": 53513.643203, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:53,250" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.2920628, - "msecs": 292.0, - "relativeCreated": 53555.201647, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:53,292" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638813.4480896, - "msecs": 448.0, - "relativeCreated": 53711.228547, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 0 ()", - "asctime": "2025-08-19 23:26:53,448" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638813.4482355, - "msecs": 448.0, - "relativeCreated": 53711.374589, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:53,448" - } - ], - "time_consumption": 5.316734313964844e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638813.4484048, - "msecs": 448.0, - "relativeCreated": 53711.543767, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 2", - "asctime": "2025-08-19 23:26:53,448", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638813.649533, - "msecs": 649.0, - "relativeCreated": 53912.671851, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:53,649", - "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", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.448543, - "msecs": 448.0, - "relativeCreated": 53711.682093, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 2", - "asctime": "2025-08-19 23:26:53,448" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.450961, - "msecs": 450.0, - "relativeCreated": 53714.100271, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:26:53,450" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.4512222, - "msecs": 451.0, - "relativeCreated": 53714.361252, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:53,451" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.451912, - "msecs": 451.0, - "relativeCreated": 53715.051011, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:53,451" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.4932165, - "msecs": 493.0, - "relativeCreated": 53756.355415, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:53,493" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638813.6493514, - "msecs": 649.0, - "relativeCreated": 53912.49048, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 2 ()", - "asctime": "2025-08-19 23:26:53,649" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638813.6494844, - "msecs": 649.0, - "relativeCreated": 53912.623338, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:53,649" - } - ], - "time_consumption": 4.863739013671875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638813.64964, - "msecs": 649.0, - "relativeCreated": 53912.77928, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 4", - "asctime": "2025-08-19 23:26:53,649", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638813.8506804, - "msecs": 850.0, - "relativeCreated": 54113.819356, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:53,850", - "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", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.6497717, - "msecs": 649.0, - "relativeCreated": 53912.910906, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 4", - "asctime": "2025-08-19 23:26:53,649" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.652094, - "msecs": 652.0, - "relativeCreated": 53915.23284, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:26:53,652" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.6523175, - "msecs": 652.0, - "relativeCreated": 53915.456512, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:53,652" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.652926, - "msecs": 652.0, - "relativeCreated": 53916.065028, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:53,652" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.693636, - "msecs": 693.0, - "relativeCreated": 53956.774962, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:53,693" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638813.8504636, - "msecs": 850.0, - "relativeCreated": 54113.602829, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 4 ()", - "asctime": "2025-08-19 23:26:53,850" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638813.8506048, - "msecs": 850.0, - "relativeCreated": 54113.743823, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:53,850" - } - ], - "time_consumption": 7.557868957519531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638813.8507967, - "msecs": 850.0, - "relativeCreated": 54113.93572, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 6", - "asctime": "2025-08-19 23:26:53,850", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638814.0519304, - "msecs": 51.0, - "relativeCreated": 54315.069251, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:54,051", - "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", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.850932, - "msecs": 850.0, - "relativeCreated": 54114.070932, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 6", - "asctime": "2025-08-19 23:26:53,850" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.853041, - "msecs": 853.0, - "relativeCreated": 54116.179926, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:26:53,853" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638813.8533256, - "msecs": 853.0, - "relativeCreated": 54116.464521, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:53,853" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.8538384, - "msecs": 853.0, - "relativeCreated": 54116.977289, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:53,853" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638813.894391, - "msecs": 894.0, - "relativeCreated": 54157.529998, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:53,894" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638814.0517042, - "msecs": 51.0, - "relativeCreated": 54314.842953, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 6 ()", - "asctime": "2025-08-19 23:26:54,051" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638814.0518456, - "msecs": 51.0, - "relativeCreated": 54314.984707, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:54,051" - } - ], - "time_consumption": 8.487701416015625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638814.0520496, - "msecs": 52.0, - "relativeCreated": 54315.18861, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 8", - "asctime": "2025-08-19 23:26:54,052", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638814.2531638, - "msecs": 253.0, - "relativeCreated": 54516.302857, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:54,253", - "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", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638814.052161, - "msecs": 52.0, - "relativeCreated": 54315.299938, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 8", - "asctime": "2025-08-19 23:26:54,052" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.0552921, - "msecs": 55.0, - "relativeCreated": 54318.431161, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:26:54,055" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638814.0555108, - "msecs": 55.0, - "relativeCreated": 54318.649855, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:54,055" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.0562391, - "msecs": 56.0, - "relativeCreated": 54319.377989, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:54,056" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.097434, - "msecs": 97.0, - "relativeCreated": 54360.573029, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:54,097" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638814.2529695, - "msecs": 252.0, - "relativeCreated": 54516.108388, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 8 ()", - "asctime": "2025-08-19 23:26:54,252" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638814.2531118, - "msecs": 253.0, - "relativeCreated": 54516.250901, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:54,253" - } - ], - "time_consumption": 5.1975250244140625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/julian/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638814.253278, - "msecs": 253.0, - "relativeCreated": 54516.417074, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/julian/main_light to 10", - "asctime": "2025-08-19 23:26:54,253", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638814.4542797, - "msecs": 454.0, - "relativeCreated": 54717.418603, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_ffw/ffw/julian/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:54,454", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638814.2534158, - "msecs": 253.0, - "relativeCreated": 54516.554939, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:54,253" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.2557886, - "msecs": 255.0, - "relativeCreated": 54518.927448, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:26:54,255" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638814.2560852, - "msecs": 256.0, - "relativeCreated": 54519.224163, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:54,256" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.256772, - "msecs": 256.0, - "relativeCreated": 54519.910985, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:54,256" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.2973008, - "msecs": 297.0, - "relativeCreated": 54560.439619, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:54,297" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638814.4540617, - "msecs": 454.0, - "relativeCreated": 54717.200842, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_ffw/ffw/julian/main_light): 10 ()", - "asctime": "2025-08-19 23:26:54,454" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_ffw/ffw/julian/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638814.454205, - "msecs": 454.0, - "relativeCreated": 54717.343836, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_ffw/ffw/julian/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:54,454" - } - ], - "time_consumption": 7.462501525878906e-05 - } - ], - "time_consumption": 1.509394884109497, - "time_start": "2025-08-19 23:26:52,944", - "time_finished": "2025-08-19 23:26:54,454" - }, - "REQ-0146": { - "name": "__tLogger__", - "msg": "REQ-0146", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638814.454539, - "msecs": 454.0, - "relativeCreated": 54717.678132, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0146", - "asctime": "2025-08-19 23:26:54,454", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638814.5547707, - "msecs": 554.0, - "relativeCreated": 54817.909805, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:26:54,554", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638814.65555, - "msecs": 655.0, - "relativeCreated": 54918.688898, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:26:54,655", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638814.555052, - "msecs": 555.0, - "relativeCreated": 54818.190966, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:26:54,555" - } - ], - "time_consumption": 0.10049796104431152 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638814.7563066, - "msecs": 756.0, - "relativeCreated": 55019.445603, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:26:54,756", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638814.7560847, - "msecs": 756.0, - "relativeCreated": 55019.223716, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:26:54,756" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638814.7562501, - "msecs": 756.0, - "relativeCreated": 55019.389176, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:26:54,756" - } - ], - "time_consumption": 5.650520324707031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638814.7564209, - "msecs": 756.0, - "relativeCreated": 55019.559963, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 0", - "asctime": "2025-08-19 23:26:54,756", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638814.9574826, - "msecs": 957.0, - "relativeCreated": 55220.621388, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:26:54,957", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638814.7565794, - "msecs": 756.0, - "relativeCreated": 55019.718239, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:26:54,756" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.757715, - "msecs": 757.0, - "relativeCreated": 55020.854004, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:26:54,757" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.759364, - "msecs": 759.0, - "relativeCreated": 55022.502812, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:26:54,759" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638814.9573092, - "msecs": 957.0, - "relativeCreated": 55220.448187, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 0 ()", - "asctime": "2025-08-19 23:26:54,957" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638814.9574313, - "msecs": 957.0, - "relativeCreated": 55220.570397, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 0 ()", - "asctime": "2025-08-19 23:26:54,957" - } - ], - "time_consumption": 5.125999450683594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638814.9575856, - "msecs": 957.0, - "relativeCreated": 55220.724603, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 2", - "asctime": "2025-08-19 23:26:54,957", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638815.1586504, - "msecs": 158.0, - "relativeCreated": 55421.789442, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:26:55,158", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638814.9577525, - "msecs": 957.0, - "relativeCreated": 55220.891617, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:26:54,957" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.9587188, - "msecs": 958.0, - "relativeCreated": 55221.857809, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:26:54,958" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638814.9603066, - "msecs": 960.0, - "relativeCreated": 55223.445631, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:26:54,960" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638815.1584241, - "msecs": 158.0, - "relativeCreated": 55421.563041, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 2 ()", - "asctime": "2025-08-19 23:26:55,158" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638815.1585784, - "msecs": 158.0, - "relativeCreated": 55421.717486, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 2 ()", - "asctime": "2025-08-19 23:26:55,158" - } - ], - "time_consumption": 7.200241088867188e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638815.158807, - "msecs": 158.0, - "relativeCreated": 55421.946, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 4", - "asctime": "2025-08-19 23:26:55,158", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638815.3601134, - "msecs": 360.0, - "relativeCreated": 55623.252472, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:26:55,360", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638815.1590645, - "msecs": 159.0, - "relativeCreated": 55422.203589, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:26:55,159" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.1599505, - "msecs": 159.0, - "relativeCreated": 55423.089563, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:26:55,159" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.1614292, - "msecs": 161.0, - "relativeCreated": 55424.568328, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:26:55,161" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638815.359919, - "msecs": 359.0, - "relativeCreated": 55623.058146, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 4 ()", - "asctime": "2025-08-19 23:26:55,359" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638815.3600616, - "msecs": 360.0, - "relativeCreated": 55623.200588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 4 ()", - "asctime": "2025-08-19 23:26:55,360" - } - ], - "time_consumption": 5.173683166503906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638815.3602252, - "msecs": 360.0, - "relativeCreated": 55623.364236, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 6", - "asctime": "2025-08-19 23:26:55,360", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638815.5612795, - "msecs": 561.0, - "relativeCreated": 55824.418497, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:26:55,561", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638815.360383, - "msecs": 360.0, - "relativeCreated": 55623.521876, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:26:55,360" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.3616028, - "msecs": 361.0, - "relativeCreated": 55624.741812, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:26:55,361" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.363095, - "msecs": 363.0, - "relativeCreated": 55626.234156, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:26:55,363" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638815.5610967, - "msecs": 561.0, - "relativeCreated": 55824.235745, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 6 ()", - "asctime": "2025-08-19 23:26:55,561" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638815.5612283, - "msecs": 561.0, - "relativeCreated": 55824.36727, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 6 ()", - "asctime": "2025-08-19 23:26:55,561" - } - ], - "time_consumption": 5.125999450683594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638815.5613914, - "msecs": 561.0, - "relativeCreated": 55824.530243, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 8", - "asctime": "2025-08-19 23:26:55,561", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638815.7623465, - "msecs": 762.0, - "relativeCreated": 56025.485386, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:26:55,762", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638815.5615444, - "msecs": 561.0, - "relativeCreated": 55824.683332, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:26:55,561" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.562378, - "msecs": 562.0, - "relativeCreated": 55825.517068, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:26:55,562" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.5639472, - "msecs": 563.0, - "relativeCreated": 55827.086326, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:26:55,563" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638815.762155, - "msecs": 762.0, - "relativeCreated": 56025.294029, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 8 ()", - "asctime": "2025-08-19 23:26:55,762" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638815.762295, - "msecs": 762.0, - "relativeCreated": 56025.434125, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 8 ()", - "asctime": "2025-08-19 23:26:55,762" - } - ], - "time_consumption": 5.14984130859375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638815.7624614, - "msecs": 762.0, - "relativeCreated": 56025.600347, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_ffw/ffw/julian/main_light to 10", - "asctime": "2025-08-19 23:26:55,762", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/julian/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638815.963674, - "msecs": 963.0, - "relativeCreated": 56226.813168, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/julian/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:26:55,963", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638815.7626433, - "msecs": 762.0, - "relativeCreated": 56025.782455, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:26:55,762" - }, - { - "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_ffw/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.7634623, - "msecs": 763.0, - "relativeCreated": 56026.601394, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:26:55,763" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638815.7646577, - "msecs": 764.0, - "relativeCreated": 56027.796559, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:26:55,764" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638815.963439, - "msecs": 963.0, - "relativeCreated": 56226.578043, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/julian/main_light): 10 ()", - "asctime": "2025-08-19 23:26:55,963" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/julian/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638815.9635878, - "msecs": 963.0, - "relativeCreated": 56226.726813, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/julian/main_light): result = 10 ()", - "asctime": "2025-08-19 23:26:55,963" - } - ], - "time_consumption": 8.630752563476562e-05 - } - ], - "time_consumption": 1.5091350078582764, - "time_start": "2025-08-19 23:26:54,454", - "time_finished": "2025-08-19 23:26:55,963" - }, - "REQ-0181": { - "name": "__tLogger__", - "msg": "REQ-0181", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638815.9640162, - "msecs": 964.0, - "relativeCreated": 56227.155234, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0181", - "asctime": "2025-08-19 23:26:55,964", + "message": "Shelly.relay/0 (ffe.livingroom.main_light) -> Light.state (ffe.livingroom.floor_light)", + "asctime": "2025-08-22 20:54:00,141", "moduleLogger": [], "testcaseLogger": [ { @@ -76918,72 +7785,18 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638816.0647414, - "msecs": 64.0, - "relativeCreated": 56327.880442, - "thread": 131449228267776, + "created": 1755888840.2420151, + "msecs": 242.0, + "relativeCreated": 2116.824492, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:56,064", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638815.96418, - "msecs": 964.0, - "relativeCreated": 56227.318943, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/floor/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:55,964" - }, - { - "name": "smart_brain.devices.shellies.ffw.floor.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638815.9643865, - "msecs": 964.0, - "relativeCreated": 56227.52549, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:55,964" - } - ], - "time_consumption": 0.10035490989685059 + "asctime": "2025-08-22 20:54:00,242", + "moduleLogger": [], + "time_consumption": 0.0 }, { "name": "__tLogger__", @@ -77001,16 +7814,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638816.1655266, - "msecs": 165.0, - "relativeCreated": 56428.665659, - "thread": 131449228267776, + "created": 1755888840.2424173, + "msecs": 242.0, + "relativeCreated": 2117.226603, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:56,165", + "asctime": "2025-08-22 20:54:00,242", "moduleLogger": [ { "name": "__unittest__", @@ -77029,16 +7842,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638816.1653266, - "msecs": 165.0, - "relativeCreated": 56428.465475, - "thread": 131449228267776, + "created": 1755888840.2423155, + "msecs": 242.0, + "relativeCreated": 2117.124632, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:56,165" + "asctime": "2025-08-22 20:54:00,242" }, { "name": "__unittest__", @@ -77058,888 +7871,16 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638816.1654718, - "msecs": 165.0, - "relativeCreated": 56428.61072, - "thread": 131449228267776, + "created": 1755888840.242374, + "msecs": 242.0, + "relativeCreated": 2117.18303, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:56,165" - } - ], - "time_consumption": 5.4836273193359375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/floor/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638816.165641, - "msecs": 165.0, - "relativeCreated": 56428.779873, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/floor/main_light to True", - "asctime": "2025-08-19 23:26:56,165", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.floor) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638816.3666549, - "msecs": 366.0, - "relativeCreated": 56629.793977, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffw.floor) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:56,366", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638816.1657817, - "msecs": 165.0, - "relativeCreated": 56428.920813, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/floor/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:56,165" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0/command", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.1680832, - "msecs": 168.0, - "relativeCreated": 56431.222165, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/floor/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:56,168" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638816.1682775, - "msecs": 168.0, - "relativeCreated": 56431.416631, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:56,168" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.1689475, - "msecs": 168.0, - "relativeCreated": 56432.08642, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:56,168" - }, - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.2102273, - "msecs": 210.0, - "relativeCreated": 56473.366143, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:56,210" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.floor)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638816.3664556, - "msecs": 366.0, - "relativeCreated": 56629.594583, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.floor)): True ()", - "asctime": "2025-08-19 23:26:56,366" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.floor)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638816.3666008, - "msecs": 366.0, - "relativeCreated": 56629.739719, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.floor)): result = True ()", - "asctime": "2025-08-19 23:26:56,366" - } - ], - "time_consumption": 5.412101745605469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/ffw/floor/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638816.36678, - "msecs": 366.0, - "relativeCreated": 56629.919196, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/ffw/floor/main_light to False", - "asctime": "2025-08-19 23:26:56,366", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (ffw.floor) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638816.5678043, - "msecs": 567.0, - "relativeCreated": 56830.943339, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (ffw.floor) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:56,567", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638816.36692, - "msecs": 366.0, - "relativeCreated": 56630.058853, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/floor/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:56,366" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.3691497, - "msecs": 369.0, - "relativeCreated": 56632.288804, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:56,369" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638816.3693612, - "msecs": 369.0, - "relativeCreated": 56632.500201, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:56,369" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.3698835, - "msecs": 369.0, - "relativeCreated": 56633.022752, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:56,369" - }, - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.4102056, - "msecs": 410.0, - "relativeCreated": 56673.344624, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:56,410" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.floor)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638816.5676403, - "msecs": 567.0, - "relativeCreated": 56830.77929, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (ffw.floor)): False ()", - "asctime": "2025-08-19 23:26:56,567" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (ffw.floor)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638816.5677507, - "msecs": 567.0, - "relativeCreated": 56830.889705, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (ffw.floor)): result = False ()", - "asctime": "2025-08-19 23:26:56,567" - } - ], - "time_consumption": 5.364418029785156e-05 - } - ], - "time_consumption": 0.6037881374359131, - "time_start": "2025-08-19 23:26:55,964", - "time_finished": "2025-08-19 23:26:56,567" - }, - "REQ-0182": { - "name": "__tLogger__", - "msg": "REQ-0182", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638816.5680397, - "msecs": 568.0, - "relativeCreated": 56831.178653, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0182", - "asctime": "2025-08-19 23:26:56,568", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638816.6686447, - "msecs": 668.0, - "relativeCreated": 56931.783665, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:56,668", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638816.5681722, - "msecs": 568.0, - "relativeCreated": 56831.311181, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/ffw/floor/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:56,568" - } - ], - "time_consumption": 0.10047245025634766 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638816.7693944, - "msecs": 769.0, - "relativeCreated": 57032.533481, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:56,769", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638816.7691915, - "msecs": 769.0, - "relativeCreated": 57032.330373, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:56,769" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638816.7693412, - "msecs": 769.0, - "relativeCreated": 57032.480147, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:56,769" - } - ], - "time_consumption": 5.316734313964844e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (ffw.floor)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638816.7695088, - "msecs": 769.0, - "relativeCreated": 57032.647809, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.floor) to True", - "asctime": "2025-08-19 23:26:56,769", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638816.97025, - "msecs": 970.0, - "relativeCreated": 57233.388875, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/floor/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:56,970", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638816.7696533, - "msecs": 769.0, - "relativeCreated": 57032.792177, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:56,769" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.770585, - "msecs": 770.0, - "relativeCreated": 57033.724091, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:56,770" - }, - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.772058, - "msecs": 772.0, - "relativeCreated": 57035.197182, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:56,772" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/floor/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638816.970081, - "msecs": 970.0, - "relativeCreated": 57233.220141, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/floor/main_light): True ()", - "asctime": "2025-08-19 23:26:56,970" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/floor/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638816.9702065, - "msecs": 970.0, - "relativeCreated": 57233.345504, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/floor/main_light): result = True ()", - "asctime": "2025-08-19 23:26:56,970" + "asctime": "2025-08-22 20:54:00,242" } ], "time_consumption": 4.3392181396484375e-05 @@ -77948,403 +7889,7 @@ "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (ffw.floor)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638816.9703543, - "msecs": 970.0, - "relativeCreated": 57233.493448, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (ffw.floor) to False", - "asctime": "2025-08-19 23:26:56,970", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/ffw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638817.1710873, - "msecs": 171.0, - "relativeCreated": 57434.226344, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/ffw/floor/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:57,171", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638816.9704504, - "msecs": 970.0, - "relativeCreated": 57233.589372, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:56,970" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.971202, - "msecs": 971.0, - "relativeCreated": 57234.340866, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:56,971" - }, - { - "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638816.972335, - "msecs": 972.0, - "relativeCreated": 57235.474135, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:56,972" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/ffw/floor/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638817.1708786, - "msecs": 170.0, - "relativeCreated": 57434.017718, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/ffw/floor/main_light): False ()", - "asctime": "2025-08-19 23:26:57,170" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/ffw/floor/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638817.1710222, - "msecs": 171.0, - "relativeCreated": 57434.16121, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/ffw/floor/main_light): result = False ()", - "asctime": "2025-08-19 23:26:57,171" - } - ], - "time_consumption": 6.508827209472656e-05 - } - ], - "time_consumption": 0.6030476093292236, - "time_start": "2025-08-19 23:26:56,568", - "time_finished": "2025-08-19 23:26:57,171" - }, - "REQ-0301": { - "name": "__tLogger__", - "msg": "REQ-0301", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638817.1713216, - "msecs": 171.0, - "relativeCreated": 57434.460636, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0301", - "asctime": "2025-08-19 23:26:57,171", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638817.2718434, - "msecs": 271.0, - "relativeCreated": 57534.982384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:57,271", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.1714602, - "msecs": 171.0, - "relativeCreated": 57434.599057, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:57,171" - }, - { - "name": "smart_brain.devices.shellies.gfw.dirk.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638817.1716404, - "msecs": 171.0, - "relativeCreated": 57434.779231, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:26:57,171" - } - ], - "time_consumption": 0.10020303726196289 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638817.3726006, - "msecs": 372.0, - "relativeCreated": 57635.739677, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:57,372", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638817.3723786, - "msecs": 372.0, - "relativeCreated": 57635.51757, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:57,372" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638817.3725455, - "msecs": 372.0, - "relativeCreated": 57635.684417, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:57,372" - } - ], - "time_consumption": 5.507469177246094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", + "Shelly.relay/0 (ffe.livingroom.main_light)", "True" ], "levelname": "DEBUG", @@ -78354,13428 +7899,25 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638817.3727174, - "msecs": 372.0, - "relativeCreated": 57635.856223, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to True", - "asctime": "2025-08-19 23:26:57,372", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638817.5736735, - "msecs": 573.0, - "relativeCreated": 57836.812429, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:57,573", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.3728304, - "msecs": 372.0, - "relativeCreated": 57635.96942, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload true", - "asctime": "2025-08-19 23:26:57,372" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.375286, - "msecs": 375.0, - "relativeCreated": 57638.424925, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:26:57,375" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.3754916, - "msecs": 375.0, - "relativeCreated": 57638.630508, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:57,375" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.375727, - "msecs": 375.0, - "relativeCreated": 57638.86588, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:57,375" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.3762352, - "msecs": 376.0, - "relativeCreated": 57639.374255, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:57,376" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.376488, - "msecs": 376.0, - "relativeCreated": 57639.626942, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:57,376" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.4597878, - "msecs": 459.0, - "relativeCreated": 57722.92681, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:57,459" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.4601705, - "msecs": 460.0, - "relativeCreated": 57723.309623, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:57,460" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.4603937, - "msecs": 460.0, - "relativeCreated": 57723.532801, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:26:57,460" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638817.573504, - "msecs": 573.0, - "relativeCreated": 57836.642963, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:26:57,573" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638817.5736244, - "msecs": 573.0, - "relativeCreated": 57836.763217, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:26:57,573" - } - ], - "time_consumption": 4.9114227294921875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638817.5737746, - "msecs": 573.0, - "relativeCreated": 57836.913652, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to False", - "asctime": "2025-08-19 23:26:57,573", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638817.774945, - "msecs": 774.0, - "relativeCreated": 58038.083997, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:57,774", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.5739121, - "msecs": 573.0, - "relativeCreated": 57837.051112, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload false", - "asctime": "2025-08-19 23:26:57,573" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.5758376, - "msecs": 575.0, - "relativeCreated": 57838.97681, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:26:57,575" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.5760417, - "msecs": 576.0, - "relativeCreated": 57839.180835, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:57,576" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.5765817, - "msecs": 576.0, - "relativeCreated": 57839.720674, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:57,576" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.6586256, - "msecs": 658.0, - "relativeCreated": 57921.764535, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:57,658" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638817.7747078, - "msecs": 774.0, - "relativeCreated": 58037.846679, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:26:57,774" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638817.7748532, - "msecs": 774.0, - "relativeCreated": 58037.992204, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:26:57,774" - } - ], - "time_consumption": 9.179115295410156e-05 - } - ], - "time_consumption": 0.6036233901977539, - "time_start": "2025-08-19 23:26:57,171", - "time_finished": "2025-08-19 23:26:57,774" - }, - "REQ-0302": { - "name": "__tLogger__", - "msg": "REQ-0302", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638817.77519, - "msecs": 775.0, - "relativeCreated": 58038.329094, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0302", - "asctime": "2025-08-19 23:26:57,775", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638817.8757408, - "msecs": 875.0, - "relativeCreated": 58138.879795, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:57,875", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.7753603, - "msecs": 775.0, - "relativeCreated": 58038.499204, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:26:57,775" - } - ], - "time_consumption": 0.10038042068481445 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638817.9764786, - "msecs": 976.0, - "relativeCreated": 58239.617447, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:57,976", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638817.9762814, - "msecs": 976.0, - "relativeCreated": 58239.42038, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:57,976" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638817.9764245, - "msecs": 976.0, - "relativeCreated": 58239.563343, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:57,976" - } - ], - "time_consumption": 5.412101745605469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638817.9765928, - "msecs": 976.0, - "relativeCreated": 58239.731894, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.dirk) to True", - "asctime": "2025-08-19 23:26:57,976", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638818.1778376, - "msecs": 177.0, - "relativeCreated": 58440.976486, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:58,177", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.976731, - "msecs": 976.0, - "relativeCreated": 58239.870252, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:26:57,976" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638817.97708, - "msecs": 977.0, - "relativeCreated": 58240.219078, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:57,977" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.9781573, - "msecs": 978.0, - "relativeCreated": 58241.296253, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:26:57,978" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.9785438, - "msecs": 978.0, - "relativeCreated": 58241.682809, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:57,978" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638817.9801466, - "msecs": 980.0, - "relativeCreated": 58243.285672, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:57,980" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638818.1776373, - "msecs": 177.0, - "relativeCreated": 58440.776465, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): True ()", - "asctime": "2025-08-19 23:26:58,177" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638818.1777718, - "msecs": 177.0, - "relativeCreated": 58440.910888, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = True ()", - "asctime": "2025-08-19 23:26:58,177" - } - ], - "time_consumption": 6.580352783203125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638818.1779652, - "msecs": 177.0, - "relativeCreated": 58441.103959, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.dirk) to False", - "asctime": "2025-08-19 23:26:58,177", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638818.378971, - "msecs": 378.0, - "relativeCreated": 58642.110257, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:58,378", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638818.1780698, - "msecs": 178.0, - "relativeCreated": 58441.208773, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:26:58,178" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.1790252, - "msecs": 179.0, - "relativeCreated": 58442.164166, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:26:58,179" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.2218795, - "msecs": 221.0, - "relativeCreated": 58485.018561, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:58,221" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638818.3787282, - "msecs": 378.0, - "relativeCreated": 58641.867135, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): False ()", - "asctime": "2025-08-19 23:26:58,378" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638818.378881, - "msecs": 378.0, - "relativeCreated": 58642.019945, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = False ()", - "asctime": "2025-08-19 23:26:58,378" - } - ], - "time_consumption": 9.012222290039062e-05 - } - ], - "time_consumption": 0.60378098487854, - "time_start": "2025-08-19 23:26:57,775", - "time_finished": "2025-08-19 23:26:58,378" - }, - "REQ-0303": { - "name": "__tLogger__", - "msg": "REQ-0303", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638818.3792212, - "msecs": 379.0, - "relativeCreated": 58642.360328, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0303", - "asctime": "2025-08-19 23:26:58,379", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638818.479771, - "msecs": 479.0, - "relativeCreated": 58742.910001, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:58,479", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638818.379381, - "msecs": 379.0, - "relativeCreated": 58642.519936, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", - "asctime": "2025-08-19 23:26:58,379" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.3817081, - "msecs": 381.0, - "relativeCreated": 58644.847057, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:58,381" - } - ], - "time_consumption": 0.09806275367736816 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638818.5803294, - "msecs": 580.0, - "relativeCreated": 58843.468463, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:58,580", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638818.5801415, - "msecs": 580.0, - "relativeCreated": 58843.280531, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:58,580" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638818.5802736, - "msecs": 580.0, - "relativeCreated": 58843.412626, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:58,580" - } - ], - "time_consumption": 5.5789947509765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638818.5804214, - "msecs": 580.0, - "relativeCreated": 58843.560254, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to True", - "asctime": "2025-08-19 23:26:58,580", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Desklight (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638818.7812378, - "msecs": 781.0, - "relativeCreated": 59044.376647, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Desklight (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:58,781", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638818.5805166, - "msecs": 580.0, - "relativeCreated": 58843.655646, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload true", - "asctime": "2025-08-19 23:26:58,580" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.58249, - "msecs": 582.0, - "relativeCreated": 58845.628982, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:58,582" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638818.5827045, - "msecs": 582.0, - "relativeCreated": 58845.843745, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:58,582" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.5833771, - "msecs": 583.0, - "relativeCreated": 58846.516244, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:58,583" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.6677117, - "msecs": 667.0, - "relativeCreated": 58930.850764, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:58,667" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.668046, - "msecs": 668.0, - "relativeCreated": 58931.185016, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:26:58,668" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.6682703, - "msecs": 668.0, - "relativeCreated": 58931.40937, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:26:58,668" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Desklight (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638818.781039, - "msecs": 781.0, - "relativeCreated": 59044.17803, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Desklight (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:26:58,781" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Desklight (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638818.7811813, - "msecs": 781.0, - "relativeCreated": 59044.320498, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Desklight (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:26:58,781" - } - ], - "time_consumption": 5.650520324707031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638818.781349, - "msecs": 781.0, - "relativeCreated": 59044.487877, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to False", - "asctime": "2025-08-19 23:26:58,781", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Desklight (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638818.9823122, - "msecs": 982.0, - "relativeCreated": 59245.451157, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Desklight (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:58,982", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638818.7814546, - "msecs": 781.0, - "relativeCreated": 59044.59359, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", - "asctime": "2025-08-19 23:26:58,781" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.7837708, - "msecs": 783.0, - "relativeCreated": 59046.909981, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:58,783" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638818.7840085, - "msecs": 784.0, - "relativeCreated": 59047.147441, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:58,784" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.784536, - "msecs": 784.0, - "relativeCreated": 59047.674757, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:58,784" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638818.8667867, - "msecs": 866.0, - "relativeCreated": 59129.925889, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:58,866" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Desklight (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638818.9821103, - "msecs": 982.0, - "relativeCreated": 59245.249119, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Desklight (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:26:58,982" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Desklight (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638818.9822576, - "msecs": 982.0, - "relativeCreated": 59245.396711, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Desklight (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:26:58,982" - } - ], - "time_consumption": 5.459785461425781e-05 - } - ], - "time_consumption": 0.6030910015106201, - "time_start": "2025-08-19 23:26:58,379", - "time_finished": "2025-08-19 23:26:58,982" - }, - "REQ-0304": { - "name": "__tLogger__", - "msg": "REQ-0304", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638818.9825597, - "msecs": 982.0, - "relativeCreated": 59245.698735, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0304", - "asctime": "2025-08-19 23:26:58,982", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638819.0832279, - "msecs": 83.0, - "relativeCreated": 59346.366981, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:59,083", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638818.9827204, - "msecs": 982.0, - "relativeCreated": 59245.859364, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", - "asctime": "2025-08-19 23:26:58,982" - } - ], - "time_consumption": 0.10050749778747559 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638819.1840048, - "msecs": 184.0, - "relativeCreated": 59447.143763, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:59,184", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638819.1837432, - "msecs": 183.0, - "relativeCreated": 59446.882114, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:59,183" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638819.1839387, - "msecs": 183.0, - "relativeCreated": 59447.077722, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:59,183" - } - ], - "time_consumption": 6.604194641113281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Desklight (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638819.1841228, - "msecs": 184.0, - "relativeCreated": 59447.261952, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Desklight (gfw.dirk) to True", - "asctime": "2025-08-19 23:26:59,184", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638819.385128, - "msecs": 385.0, - "relativeCreated": 59648.266834, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:59,385", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638819.1842983, - "msecs": 184.0, - "relativeCreated": 59447.43719, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:59,184" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.1851573, - "msecs": 185.0, - "relativeCreated": 59448.296472, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:59,185" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.187029, - "msecs": 187.0, - "relativeCreated": 59450.167978, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", - "asctime": "2025-08-19 23:26:59,187" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638819.3849447, - "msecs": 384.0, - "relativeCreated": 59648.083675, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): True ()", - "asctime": "2025-08-19 23:26:59,384" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638819.3850784, - "msecs": 385.0, - "relativeCreated": 59648.217612, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = True ()", - "asctime": "2025-08-19 23:26:59,385" - } - ], - "time_consumption": 4.9591064453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Desklight (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638819.3852339, - "msecs": 385.0, - "relativeCreated": 59648.373044, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Desklight (gfw.dirk) to False", - "asctime": "2025-08-19 23:26:59,385", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638819.586275, - "msecs": 586.0, - "relativeCreated": 59849.414149, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:26:59,586", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638819.3854427, - "msecs": 385.0, - "relativeCreated": 59648.581766, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:26:59,385" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.3864493, - "msecs": 386.0, - "relativeCreated": 59649.588471, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:26:59,386" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.388346, - "msecs": 388.0, - "relativeCreated": 59651.48494, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2025-08-19 23:26:59,388" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638819.586094, - "msecs": 586.0, - "relativeCreated": 59849.232707, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): False ()", - "asctime": "2025-08-19 23:26:59,586" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638819.586226, - "msecs": 586.0, - "relativeCreated": 59849.36498, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = False ()", - "asctime": "2025-08-19 23:26:59,586" - } - ], - "time_consumption": 4.9114227294921875e-05 - } - ], - "time_consumption": 0.6037154197692871, - "time_start": "2025-08-19 23:26:58,982", - "time_finished": "2025-08-19 23:26:59,586" - }, - "REQ-0305": { - "name": "__tLogger__", - "msg": "REQ-0305", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638819.5865026, - "msecs": 586.0, - "relativeCreated": 59849.641588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0305", - "asctime": "2025-08-19 23:26:59,586", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638819.686986, - "msecs": 686.0, - "relativeCreated": 59950.124868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:26:59,686", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638819.5866318, - "msecs": 586.0, - "relativeCreated": 59849.770714, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", - "asctime": "2025-08-19 23:26:59,586" - } - ], - "time_consumption": 0.10035419464111328 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638819.7876635, - "msecs": 787.0, - "relativeCreated": 60050.802475, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:26:59,787", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638819.7874675, - "msecs": 787.0, - "relativeCreated": 60050.606439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:26:59,787" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638819.7876115, - "msecs": 787.0, - "relativeCreated": 60050.750272, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:26:59,787" - } - ], - "time_consumption": 5.1975250244140625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/pc_dock", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638819.7877805, - "msecs": 787.0, - "relativeCreated": 60050.919727, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/pc_dock to True", - "asctime": "2025-08-19 23:26:59,787", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri 1 port Powerplug (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638819.9888692, - "msecs": 988.0, - "relativeCreated": 60252.008014, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri 1 port Powerplug (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:26:59,988", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638819.7879179, - "msecs": 787.0, - "relativeCreated": 60051.056877, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload true", - "asctime": "2025-08-19 23:26:59,787" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.790906, - "msecs": 790.0, - "relativeCreated": 60054.044764, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/dock/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:59,790" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638819.7911081, - "msecs": 791.0, - "relativeCreated": 60054.247135, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:26:59,791" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.7916315, - "msecs": 791.0, - "relativeCreated": 60054.770334, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:26:59,791" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.832454, - "msecs": 832.0, - "relativeCreated": 60095.592868, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", - "asctime": "2025-08-19 23:26:59,832" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri 1 port Powerplug (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638819.9886723, - "msecs": 988.0, - "relativeCreated": 60251.81121, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri 1 port Powerplug (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:26:59,988" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri 1 port Powerplug (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638819.9888148, - "msecs": 988.0, - "relativeCreated": 60251.953884, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri 1 port Powerplug (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:26:59,988" - } - ], - "time_consumption": 5.435943603515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/pc_dock", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638819.9890156, - "msecs": 989.0, - "relativeCreated": 60252.154494, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/pc_dock to False", - "asctime": "2025-08-19 23:26:59,989", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri 1 port Powerplug (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638820.1900058, - "msecs": 190.0, - "relativeCreated": 60453.144835, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri 1 port Powerplug (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:00,190", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638819.9891255, - "msecs": 989.0, - "relativeCreated": 60252.26446, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", - "asctime": "2025-08-19 23:26:59,989" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.991334, - "msecs": 991.0, - "relativeCreated": 60254.473008, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/dock/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:59,991" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638819.991535, - "msecs": 991.0, - "relativeCreated": 60254.673734, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:26:59,991" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638819.9920793, - "msecs": 992.0, - "relativeCreated": 60255.218418, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:26:59,992" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638820.0343444, - "msecs": 34.0, - "relativeCreated": 60297.483435, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", - "asctime": "2025-08-19 23:27:00,034" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri 1 port Powerplug (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638820.189769, - "msecs": 189.0, - "relativeCreated": 60452.907865, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri 1 port Powerplug (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:00,189" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri 1 port Powerplug (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638820.189933, - "msecs": 189.0, - "relativeCreated": 60453.072057, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri 1 port Powerplug (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:00,189" - } - ], - "time_consumption": 7.271766662597656e-05 - } - ], - "time_consumption": 0.6035032272338867, - "time_start": "2025-08-19 23:26:59,586", - "time_finished": "2025-08-19 23:27:00,190" - }, - "REQ-0306": { - "name": "__tLogger__", - "msg": "REQ-0306", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638820.1902566, - "msecs": 190.0, - "relativeCreated": 60453.395733, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0306", - "asctime": "2025-08-19 23:27:00,190", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638820.2908745, - "msecs": 290.0, - "relativeCreated": 60554.013313, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:00,290", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638820.1903994, - "msecs": 190.0, - "relativeCreated": 60453.538385, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", - "asctime": "2025-08-19 23:27:00,190" - } - ], - "time_consumption": 0.10047507286071777 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638820.391627, - "msecs": 391.0, - "relativeCreated": 60654.765891, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:00,391", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638820.3914235, - "msecs": 391.0, - "relativeCreated": 60654.562451, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:00,391" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638820.3915691, - "msecs": 391.0, - "relativeCreated": 60654.708032, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:00,391" - } - ], - "time_consumption": 5.793571472167969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri 1 port Powerplug (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638820.3917327, - "msecs": 391.0, - "relativeCreated": 60654.87166, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri 1 port Powerplug (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:00,391", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/pc_dock is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638820.5926888, - "msecs": 592.0, - "relativeCreated": 60855.827868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/pc_dock is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:00,592", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "{\"state\": \"on\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638820.3918507, - "msecs": 391.0, - "relativeCreated": 60654.989701, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"on\"}", - "asctime": "2025-08-19 23:27:00,391" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638820.3929741, - "msecs": 392.0, - "relativeCreated": 60656.112959, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:27:00,392" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638820.3943048, - "msecs": 394.0, - "relativeCreated": 60657.443727, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", - "asctime": "2025-08-19 23:27:00,394" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/pc_dock", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638820.592485, - "msecs": 592.0, - "relativeCreated": 60855.623758, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/pc_dock): True ()", - "asctime": "2025-08-19 23:27:00,592" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/pc_dock", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638820.592615, - "msecs": 592.0, - "relativeCreated": 60855.753917, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/pc_dock): result = True ()", - "asctime": "2025-08-19 23:27:00,592" - } - ], - "time_consumption": 7.390975952148438e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri 1 port Powerplug (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638820.5928013, - "msecs": 592.0, - "relativeCreated": 60855.940167, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri 1 port Powerplug (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:00,592", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/pc_dock is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638820.793754, - "msecs": 793.0, - "relativeCreated": 61056.893147, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/pc_dock is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:00,793", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "{\"state\": \"off\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638820.5929422, - "msecs": 592.0, - "relativeCreated": 60856.081346, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"off\"}", - "asctime": "2025-08-19 23:27:00,592" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/dock", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638820.5939233, - "msecs": 593.0, - "relativeCreated": 60857.062361, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:27:00,593" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638820.5951693, - "msecs": 595.0, - "relativeCreated": 60858.308191, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", - "asctime": "2025-08-19 23:27:00,595" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/pc_dock", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638820.7935593, - "msecs": 793.0, - "relativeCreated": 61056.698194, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/pc_dock): False ()", - "asctime": "2025-08-19 23:27:00,793" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/pc_dock", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638820.793699, - "msecs": 793.0, - "relativeCreated": 61056.837978, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/pc_dock): result = False ()", - "asctime": "2025-08-19 23:27:00,793" - } - ], - "time_consumption": 5.507469177246094e-05 - } - ], - "time_consumption": 0.6034975051879883, - "time_start": "2025-08-19 23:27:00,190", - "time_finished": "2025-08-19 23:27:00,793" - }, - "REQ-0307": { - "name": "__tLogger__", - "msg": "REQ-0307", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638820.7940478, - "msecs": 794.0, - "relativeCreated": 61057.186865, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0307", - "asctime": "2025-08-19 23:27:00,794", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638820.8947759, - "msecs": 894.0, - "relativeCreated": 61157.914762, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:00,894", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638820.7942257, - "msecs": 794.0, - "relativeCreated": 61057.364755, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false", - "asctime": "2025-08-19 23:27:00,794" - }, - { - "name": "smart_brain.devices.my_apps.gfw.dirk.powerplug", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638820.794438, - "msecs": 794.0, - "relativeCreated": 61057.576862, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:27:00,794" - } - ], - "time_consumption": 0.10033798217773438 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638820.9955404, - "msecs": 995.0, - "relativeCreated": 61258.679368, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:00,995", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638820.9953456, - "msecs": 995.0, - "relativeCreated": 61258.484694, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:00,995" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638820.9954875, - "msecs": 995.0, - "relativeCreated": 61258.626613, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:00,995" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/amplifier", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638820.9956532, - "msecs": 995.0, - "relativeCreated": 61258.792048, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/amplifier to True", - "asctime": "2025-08-19 23:27:00,995", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638821.1966207, - "msecs": 196.0, - "relativeCreated": 61459.759788, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:01,196", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638820.9957924, - "msecs": 995.0, - "relativeCreated": 61258.931402, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload true", - "asctime": "2025-08-19 23:27:00,995" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638820.9981833, - "msecs": 998.0, - "relativeCreated": 61261.322066, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:00,998" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638820.9983807, - "msecs": 998.0, - "relativeCreated": 61261.519586, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:00,998" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638820.9992635, - "msecs": 999.0, - "relativeCreated": 61262.402516, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:00,999" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.0827339, - "msecs": 82.0, - "relativeCreated": 61345.872934, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:01,082" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638821.1964386, - "msecs": 196.0, - "relativeCreated": 61459.577516, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:27:01,196" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638821.1965678, - "msecs": 196.0, - "relativeCreated": 61459.706916, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:27:01,196" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/amplifier", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638821.1967466, - "msecs": 196.0, - "relativeCreated": 61459.885626, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/amplifier to False", - "asctime": "2025-08-19 23:27:01,196", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638821.3978622, - "msecs": 397.0, - "relativeCreated": 61661.001077, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:01,397", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638821.1968865, - "msecs": 196.0, - "relativeCreated": 61460.025642, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false", - "asctime": "2025-08-19 23:27:01,196" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.198849, - "msecs": 198.0, - "relativeCreated": 61461.988033, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:01,198" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638821.1990778, - "msecs": 199.0, - "relativeCreated": 61462.216958, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:01,199" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.1996725, - "msecs": 199.0, - "relativeCreated": 61462.811505, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:01,199" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.2813487, - "msecs": 281.0, - "relativeCreated": 61544.487504, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:01,281" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638821.3976674, - "msecs": 397.0, - "relativeCreated": 61660.806297, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:01,397" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638821.3978102, - "msecs": 397.0, - "relativeCreated": 61660.949297, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:01,397" - } - ], - "time_consumption": 5.1975250244140625e-05 - } - ], - "time_consumption": 0.6038143634796143, - "time_start": "2025-08-19 23:27:00,794", - "time_finished": "2025-08-19 23:27:01,397" - }, - "REQ-0308": { - "name": "__tLogger__", - "msg": "REQ-0308", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638821.3981724, - "msecs": 398.0, - "relativeCreated": 61661.311507, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0308", - "asctime": "2025-08-19 23:27:01,398", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638821.4986875, - "msecs": 498.0, - "relativeCreated": 61761.826554, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:01,498", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.output.1.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/output/1/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638821.3983335, - "msecs": 398.0, - "relativeCreated": 61661.472378, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/amplifier/output/1/set and payload false", - "asctime": "2025-08-19 23:27:01,398" - } - ], - "time_consumption": 0.10035395622253418 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638821.5994384, - "msecs": 599.0, - "relativeCreated": 61862.577326, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:01,599", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638821.5992277, - "msecs": 599.0, - "relativeCreated": 61862.366764, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:01,599" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638821.599385, - "msecs": 599.0, - "relativeCreated": 61862.523993, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:01,599" - } - ], - "time_consumption": 5.340576171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Amplifier (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638821.599545, - "msecs": 599.0, - "relativeCreated": 61862.684117, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Amplifier (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:01,599", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/amplifier is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638821.800436, - "msecs": 800.0, - "relativeCreated": 62063.57498, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/amplifier is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:01,800", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638821.5996592, - "msecs": 599.0, - "relativeCreated": 61862.798334, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:01,599" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.6006682, - "msecs": 600.0, - "relativeCreated": 61863.807238, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:01,600" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.602725, - "msecs": 602.0, - "relativeCreated": 61865.86407, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:01,602" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/amplifier", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638821.8002388, - "msecs": 800.0, - "relativeCreated": 62063.37782, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/amplifier): True ()", - "asctime": "2025-08-19 23:27:01,800" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/amplifier", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638821.800382, - "msecs": 800.0, - "relativeCreated": 62063.521042, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/amplifier): result = True ()", - "asctime": "2025-08-19 23:27:01,800" - } - ], - "time_consumption": 5.412101745605469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Amplifier (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638821.800551, - "msecs": 800.0, - "relativeCreated": 62063.689817, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Amplifier (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:01,800", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/amplifier is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638822.0017388, - "msecs": 1.0, - "relativeCreated": 62264.877691, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/amplifier is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:02,001", - "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", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638821.8006768, - "msecs": 800.0, - "relativeCreated": 62063.815923, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:01,800" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.8018577, - "msecs": 801.0, - "relativeCreated": 62064.996921, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:01,801" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638821.8037078, - "msecs": 803.0, - "relativeCreated": 62066.84683, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:01,803" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/amplifier", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638822.0015137, - "msecs": 1.0, - "relativeCreated": 62264.652838, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/amplifier): False ()", - "asctime": "2025-08-19 23:27:02,001" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/amplifier", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638822.0016556, - "msecs": 1.0, - "relativeCreated": 62264.79468, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/amplifier): result = False ()", - "asctime": "2025-08-19 23:27:02,001" - } - ], - "time_consumption": 8.320808410644531e-05 - } - ], - "time_consumption": 0.6035664081573486, - "time_start": "2025-08-19 23:27:01,398", - "time_finished": "2025-08-19 23:27:02,001" - }, - "REQ-0309": { - "name": "__tLogger__", - "msg": "REQ-0309", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638822.0020218, - "msecs": 2.0, - "relativeCreated": 62265.161002, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0309", - "asctime": "2025-08-19 23:27:02,002", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638822.1026077, - "msecs": 102.0, - "relativeCreated": 62365.746613, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:02,102", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.0021765, - "msecs": 2.0, - "relativeCreated": 62265.315446, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/phono/state/set and payload false", - "asctime": "2025-08-19 23:27:02,002" - }, - { - "name": "smart_brain.devices.my_apps.gfw.dirk.powerplug", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638822.0023983, - "msecs": 2.0, - "relativeCreated": 62265.537301, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:27:02,002" - } - ], - "time_consumption": 0.10020947456359863 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638822.2032385, - "msecs": 203.0, - "relativeCreated": 62466.37737, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:02,203", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638822.2030225, - "msecs": 203.0, - "relativeCreated": 62466.161496, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:02,203" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638822.203178, - "msecs": 203.0, - "relativeCreated": 62466.317098, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:02,203" - } - ], - "time_consumption": 6.0558319091796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/phono", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638822.2033534, - "msecs": 203.0, - "relativeCreated": 62466.492268, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/phono to True", - "asctime": "2025-08-19 23:27:02,203", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Phono (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638822.4044254, - "msecs": 404.0, - "relativeCreated": 62667.564382, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Phono (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:02,404", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.203467, - "msecs": 203.0, - "relativeCreated": 62466.606135, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/phono/state/set and payload true", - "asctime": "2025-08-19 23:27:02,203" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.2054195, - "msecs": 205.0, - "relativeCreated": 62468.558563, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'true'", - "asctime": "2025-08-19 23:27:02,205" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.2056034, - "msecs": 205.0, - "relativeCreated": 62468.742437, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", - "asctime": "2025-08-19 23:27:02,205" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.2061372, - "msecs": 206.0, - "relativeCreated": 62469.276012, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", - "asctime": "2025-08-19 23:27:02,206" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.2478745, - "msecs": 247.0, - "relativeCreated": 62511.01361, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:02,247" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.2480676, - "msecs": 248.0, - "relativeCreated": 62511.206708, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:02,248" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.2483706, - "msecs": 248.0, - "relativeCreated": 62511.50969, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'true'", - "asctime": "2025-08-19 23:27:02,248" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.2487714, - "msecs": 248.0, - "relativeCreated": 62511.910314, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:02,248" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.291675, - "msecs": 291.0, - "relativeCreated": 62554.814198, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:02,291" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Phono (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638822.4042332, - "msecs": 404.0, - "relativeCreated": 62667.372166, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Phono (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:27:02,404" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Phono (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638822.4043736, - "msecs": 404.0, - "relativeCreated": 62667.512696, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Phono (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:27:02,404" - } - ], - "time_consumption": 5.173683166503906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/phono", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638822.4045448, - "msecs": 404.0, - "relativeCreated": 62667.683868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/phono to False", - "asctime": "2025-08-19 23:27:02,404", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Phono (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638822.6056693, - "msecs": 605.0, - "relativeCreated": 62868.808388, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Phono (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:02,605", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.4046772, - "msecs": 404.0, - "relativeCreated": 62667.816224, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/phono/state/set and payload false", - "asctime": "2025-08-19 23:27:02,404" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.4071422, - "msecs": 407.0, - "relativeCreated": 62670.281059, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'false'", - "asctime": "2025-08-19 23:27:02,407" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.4073358, - "msecs": 407.0, - "relativeCreated": 62670.474707, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", - "asctime": "2025-08-19 23:27:02,407" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.4079502, - "msecs": 407.0, - "relativeCreated": 62671.089208, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", - "asctime": "2025-08-19 23:27:02,407" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.4493032, - "msecs": 449.0, - "relativeCreated": 62712.44192, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:02,449" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.4495056, - "msecs": 449.0, - "relativeCreated": 62712.644527, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:02,449" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.4498498, - "msecs": 449.0, - "relativeCreated": 62712.988901, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'false'", - "asctime": "2025-08-19 23:27:02,449" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.4505043, - "msecs": 450.0, - "relativeCreated": 62713.6431, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:02,450" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.492709, - "msecs": 492.0, - "relativeCreated": 62755.847976, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:02,492" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Phono (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638822.6054862, - "msecs": 605.0, - "relativeCreated": 62868.625049, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Phono (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:02,605" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Phono (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638822.6056192, - "msecs": 605.0, - "relativeCreated": 62868.758132, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Phono (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:02,605" - } - ], - "time_consumption": 5.0067901611328125e-05 - } - ], - "time_consumption": 0.6036474704742432, - "time_start": "2025-08-19 23:27:02,002", - "time_finished": "2025-08-19 23:27:02,605" - }, - "REQ-0310": { - "name": "__tLogger__", - "msg": "REQ-0310", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638822.6059427, - "msecs": 605.0, - "relativeCreated": 62869.08189, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0310", - "asctime": "2025-08-19 23:27:02,605", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638822.706452, - "msecs": 706.0, - "relativeCreated": 62969.591025, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:02,706", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.output.2.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/output/2/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.6060915, - "msecs": 606.0, - "relativeCreated": 62869.230454, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/phono/output/2/set and payload false", - "asctime": "2025-08-19 23:27:02,606" - } - ], - "time_consumption": 0.10036039352416992 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638822.807257, - "msecs": 807.0, - "relativeCreated": 63070.395721, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:02,807", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638822.8070178, - "msecs": 807.0, - "relativeCreated": 63070.156809, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:02,807" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638822.8071694, - "msecs": 807.0, - "relativeCreated": 63070.308642, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:02,807" - } - ], - "time_consumption": 8.749961853027344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Phono (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638822.807382, - "msecs": 807.0, - "relativeCreated": 63070.521059, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Phono (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:02,807", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/phono is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638823.008483, - "msecs": 8.0, - "relativeCreated": 63271.621897, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/phono is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:03,008", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.8075242, - "msecs": 807.0, - "relativeCreated": 63070.663034, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", - "asctime": "2025-08-19 23:27:02,807" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.8086636, - "msecs": 808.0, - "relativeCreated": 63071.802605, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", - "asctime": "2025-08-19 23:27:02,808" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.8104558, - "msecs": 810.0, - "relativeCreated": 63073.59493, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:02,810" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638822.8106575, - "msecs": 810.0, - "relativeCreated": 63073.796608, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:02,810" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.8110294, - "msecs": 811.0, - "relativeCreated": 63074.168465, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'true'", - "asctime": "2025-08-19 23:27:02,811" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.8116958, - "msecs": 811.0, - "relativeCreated": 63074.834948, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:02,811" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638822.8937874, - "msecs": 893.0, - "relativeCreated": 63156.926294, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:02,893" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/phono", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638823.0082622, - "msecs": 8.0, - "relativeCreated": 63271.401142, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/phono): True ()", - "asctime": "2025-08-19 23:27:03,008" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/phono", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638823.008406, - "msecs": 8.0, - "relativeCreated": 63271.544901, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/phono): result = True ()", - "asctime": "2025-08-19 23:27:03,008" - } - ], - "time_consumption": 7.700920104980469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Phono (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638823.0085998, - "msecs": 8.0, - "relativeCreated": 63271.738819, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Phono (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:03,008", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/phono is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638823.2096114, - "msecs": 209.0, - "relativeCreated": 63472.750539, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/phono is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:03,209", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.0087225, - "msecs": 8.0, - "relativeCreated": 63271.861474, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", - "asctime": "2025-08-19 23:27:03,008" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.0098822, - "msecs": 9.0, - "relativeCreated": 63273.021218, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", - "asctime": "2025-08-19 23:27:03,009" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.0115705, - "msecs": 11.0, - "relativeCreated": 63274.70935, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:03,011" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.0117404, - "msecs": 11.0, - "relativeCreated": 63274.879517, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:03,011" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.0120854, - "msecs": 12.0, - "relativeCreated": 63275.224601, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'false'", - "asctime": "2025-08-19 23:27:03,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'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.012776, - "msecs": 12.0, - "relativeCreated": 63275.914896, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:03,012" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.0948162, - "msecs": 94.0, - "relativeCreated": 63357.955211, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:03,094" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/phono", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638823.2094247, - "msecs": 209.0, - "relativeCreated": 63472.563681, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/phono): False ()", - "asctime": "2025-08-19 23:27:03,209" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/phono", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638823.209561, - "msecs": 209.0, - "relativeCreated": 63472.700151, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/phono): result = False ()", - "asctime": "2025-08-19 23:27:03,209" - } - ], - "time_consumption": 5.030632019042969e-05 - } - ], - "time_consumption": 0.6036686897277832, - "time_start": "2025-08-19 23:27:02,605", - "time_finished": "2025-08-19 23:27:03,209" - }, - "REQ-0311": { - "name": "__tLogger__", - "msg": "REQ-0311", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638823.209851, - "msecs": 209.0, - "relativeCreated": 63472.990147, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0311", - "asctime": "2025-08-19 23:27:03,209", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638823.3105378, - "msecs": 310.0, - "relativeCreated": 63573.676732, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:03,310", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.2100232, - "msecs": 210.0, - "relativeCreated": 63473.162187, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false", - "asctime": "2025-08-19 23:27:03,210" - }, - { - "name": "smart_brain.devices.my_apps.gfw.dirk.powerplug", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638823.2102175, - "msecs": 210.0, - "relativeCreated": 63473.356483, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:27:03,210" - } - ], - "time_consumption": 0.10032033920288086 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638823.4112866, - "msecs": 411.0, - "relativeCreated": 63674.425624, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:03,411", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638823.411063, - "msecs": 411.0, - "relativeCreated": 63674.202163, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:03,411" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638823.4112313, - "msecs": 411.0, - "relativeCreated": 63674.370189, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:03,411" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/cd_player", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638823.4114013, - "msecs": 411.0, - "relativeCreated": 63674.540208, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/cd_player to True", - "asctime": "2025-08-19 23:27:03,411", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for CD_Player (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638823.6125233, - "msecs": 612.0, - "relativeCreated": 63875.662175, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for CD_Player (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:03,612", - "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", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.4115102, - "msecs": 411.0, - "relativeCreated": 63674.649243, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload true", - "asctime": "2025-08-19 23:27:03,411" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.41413, - "msecs": 414.0, - "relativeCreated": 63677.268836, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'true'", - "asctime": "2025-08-19 23:27:03,414" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.4143841, - "msecs": 414.0, - "relativeCreated": 63677.523222, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", - "asctime": "2025-08-19 23:27:03,414" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.4151244, - "msecs": 415.0, - "relativeCreated": 63678.263606, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", - "asctime": "2025-08-19 23:27:03,415" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.4571822, - "msecs": 457.0, - "relativeCreated": 63720.321176, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:03,457" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.4573567, - "msecs": 457.0, - "relativeCreated": 63720.495689, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:03,457" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.4576488, - "msecs": 457.0, - "relativeCreated": 63720.787608, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", - "asctime": "2025-08-19 23:27:03,457" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.4582715, - "msecs": 458.0, - "relativeCreated": 63721.410613, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:03,458" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.5005517, - "msecs": 500.0, - "relativeCreated": 63763.690654, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:03,500" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for CD_Player (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638823.6123223, - "msecs": 612.0, - "relativeCreated": 63875.461304, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for CD_Player (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:27:03,612" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for CD_Player (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638823.61247, - "msecs": 612.0, - "relativeCreated": 63875.60899, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for CD_Player (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:27:03,612" - } - ], - "time_consumption": 5.340576171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/cd_player", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638823.612664, - "msecs": 612.0, - "relativeCreated": 63875.803034, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/cd_player to False", - "asctime": "2025-08-19 23:27:03,612", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for CD_Player (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638823.8136714, - "msecs": 813.0, - "relativeCreated": 64076.810511, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for CD_Player (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:03,813", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.612777, - "msecs": 612.0, - "relativeCreated": 63875.916062, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false", - "asctime": "2025-08-19 23:27:03,612" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.6153116, - "msecs": 615.0, - "relativeCreated": 63878.450562, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'false'", - "asctime": "2025-08-19 23:27:03,615" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.6155233, - "msecs": 615.0, - "relativeCreated": 63878.662384, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", - "asctime": "2025-08-19 23:27:03,615" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.616168, - "msecs": 616.0, - "relativeCreated": 63879.306965, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", - "asctime": "2025-08-19 23:27:03,616" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.6578, - "msecs": 657.0, - "relativeCreated": 63920.938978, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:03,657" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.6580224, - "msecs": 658.0, - "relativeCreated": 63921.161527, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:03,658" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.6583235, - "msecs": 658.0, - "relativeCreated": 63921.462466, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2025-08-19 23:27:03,658" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.658774, - "msecs": 658.0, - "relativeCreated": 63921.912913, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:03,658" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638823.7003932, - "msecs": 700.0, - "relativeCreated": 63963.532332, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:03,700" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for CD_Player (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638823.813439, - "msecs": 813.0, - "relativeCreated": 64076.578103, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for CD_Player (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:03,813" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for CD_Player (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638823.8136153, - "msecs": 813.0, - "relativeCreated": 64076.754377, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for CD_Player (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:03,813" - } - ], - "time_consumption": 5.602836608886719e-05 - } - ], - "time_consumption": 0.6038203239440918, - "time_start": "2025-08-19 23:27:03,209", - "time_finished": "2025-08-19 23:27:03,813" - }, - "REQ-0312": { - "name": "__tLogger__", - "msg": "REQ-0312", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638823.8139586, - "msecs": 813.0, - "relativeCreated": 64077.097556, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0312", - "asctime": "2025-08-19 23:27:03,813", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638823.914632, - "msecs": 914.0, - "relativeCreated": 64177.771245, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:03,914", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.output.3.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/output/3/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638823.8141243, - "msecs": 814.0, - "relativeCreated": 64077.26326, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/cd_player/output/3/set and payload false", - "asctime": "2025-08-19 23:27:03,814" - } - ], - "time_consumption": 0.10050773620605469 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638824.015415, - "msecs": 15.0, - "relativeCreated": 64278.554072, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:04,015", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638824.0151873, - "msecs": 15.0, - "relativeCreated": 64278.326298, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:04,015" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638824.015333, - "msecs": 15.0, - "relativeCreated": 64278.471992, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:04,015" - } - ], - "time_consumption": 8.20159912109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "CD_Player (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638824.0155308, - "msecs": 15.0, - "relativeCreated": 64278.669639, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of CD_Player (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:04,015", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/cd_player is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638824.2165208, - "msecs": 216.0, - "relativeCreated": 64479.659662, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/cd_player is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:04,216", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.0156784, - "msecs": 15.0, - "relativeCreated": 64278.817385, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", - "asctime": "2025-08-19 23:27:04,015" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.0168824, - "msecs": 16.0, - "relativeCreated": 64280.021342, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", - "asctime": "2025-08-19 23:27:04,016" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.0185792, - "msecs": 18.0, - "relativeCreated": 64281.718141, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:04,018" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.0187283, - "msecs": 18.0, - "relativeCreated": 64281.867238, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:04,018" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.0190709, - "msecs": 19.0, - "relativeCreated": 64282.210033, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", - "asctime": "2025-08-19 23:27:04,019" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.0195174, - "msecs": 19.0, - "relativeCreated": 64282.656326, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:04,019" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.101662, - "msecs": 101.0, - "relativeCreated": 64364.80096, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:04,101" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/cd_player", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638824.2163458, - "msecs": 216.0, - "relativeCreated": 64479.484761, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/cd_player): True ()", - "asctime": "2025-08-19 23:27:04,216" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/cd_player", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638824.2164757, - "msecs": 216.0, - "relativeCreated": 64479.614579, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/cd_player): result = True ()", - "asctime": "2025-08-19 23:27:04,216" - } - ], - "time_consumption": 4.506111145019531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "CD_Player (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638824.2166429, - "msecs": 216.0, - "relativeCreated": 64479.781724, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of CD_Player (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:04,216", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/cd_player is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638824.4177263, - "msecs": 417.0, - "relativeCreated": 64680.865328, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/cd_player is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:04,417", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.2167585, - "msecs": 216.0, - "relativeCreated": 64479.897519, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", - "asctime": "2025-08-19 23:27:04,216" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.2177684, - "msecs": 217.0, - "relativeCreated": 64480.907456, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", - "asctime": "2025-08-19 23:27:04,217" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.219261, - "msecs": 219.0, - "relativeCreated": 64482.400005, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:04,219" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.219446, - "msecs": 219.0, - "relativeCreated": 64482.585107, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:04,219" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.2197733, - "msecs": 219.0, - "relativeCreated": 64482.912217, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2025-08-19 23:27:04,219" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.2202435, - "msecs": 220.0, - "relativeCreated": 64483.382558, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:04,220" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.302844, - "msecs": 302.0, - "relativeCreated": 64565.983133, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:04,302" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/cd_player", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638824.417522, - "msecs": 417.0, - "relativeCreated": 64680.660864, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/cd_player): False ()", - "asctime": "2025-08-19 23:27:04,417" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/cd_player", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638824.4176707, - "msecs": 417.0, - "relativeCreated": 64680.809618, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/cd_player): result = False ()", - "asctime": "2025-08-19 23:27:04,417" - } - ], - "time_consumption": 5.555152893066406e-05 - } - ], - "time_consumption": 0.6037676334381104, - "time_start": "2025-08-19 23:27:03,813", - "time_finished": "2025-08-19 23:27:04,417" - }, - "REQ-0313": { - "name": "__tLogger__", - "msg": "REQ-0313", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638824.4180112, - "msecs": 418.0, - "relativeCreated": 64681.150225, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0313", - "asctime": "2025-08-19 23:27:04,418", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638824.5186968, - "msecs": 518.0, - "relativeCreated": 64781.835792, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:04,518", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.4181533, - "msecs": 418.0, - "relativeCreated": 64681.292186, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/bt/state/set and payload false", - "asctime": "2025-08-19 23:27:04,418" - }, - { - "name": "smart_brain.devices.my_apps.gfw.dirk.powerplug", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638824.4183881, - "msecs": 418.0, - "relativeCreated": 64681.527332, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:27:04,418" - } - ], - "time_consumption": 0.10030865669250488 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638824.6193366, - "msecs": 619.0, - "relativeCreated": 64882.475779, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:04,619", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638824.6191483, - "msecs": 619.0, - "relativeCreated": 64882.287255, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:04,619" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638824.6192853, - "msecs": 619.0, - "relativeCreated": 64882.424278, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:04,619" - } - ], - "time_consumption": 5.125999450683594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/bt", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638824.6194425, - "msecs": 619.0, - "relativeCreated": 64882.581439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/bt to True", - "asctime": "2025-08-19 23:27:04,619", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Bluetooth (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638824.8204844, - "msecs": 820.0, - "relativeCreated": 65083.623462, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Bluetooth (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:04,820", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.619548, - "msecs": 619.0, - "relativeCreated": 64882.687241, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/bt/state/set and payload true", - "asctime": "2025-08-19 23:27:04,619" - }, - { - "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'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.62206, - "msecs": 622.0, - "relativeCreated": 64885.199162, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'true'", - "asctime": "2025-08-19 23:27:04,622" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.622242, - "msecs": 622.0, - "relativeCreated": 64885.381126, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", - "asctime": "2025-08-19 23:27:04,622" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.6229897, - "msecs": 622.0, - "relativeCreated": 64886.128678, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", - "asctime": "2025-08-19 23:27:04,622" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.6636708, - "msecs": 663.0, - "relativeCreated": 64926.809898, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:04,663" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.6638343, - "msecs": 663.0, - "relativeCreated": 64926.973249, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:04,663" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.664133, - "msecs": 664.0, - "relativeCreated": 64927.272061, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'true'", - "asctime": "2025-08-19 23:27:04,664" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.664538, - "msecs": 664.0, - "relativeCreated": 64927.676843, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:04,664" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.7062526, - "msecs": 706.0, - "relativeCreated": 64969.391501, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:04,706" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Bluetooth (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638824.820247, - "msecs": 820.0, - "relativeCreated": 65083.385977, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Bluetooth (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:27:04,820" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Bluetooth (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638824.8204246, - "msecs": 820.0, - "relativeCreated": 65083.563564, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Bluetooth (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:27:04,820" - } - ], - "time_consumption": 5.984306335449219e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/bt", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638824.8206043, - "msecs": 820.0, - "relativeCreated": 65083.743364, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/bt to False", - "asctime": "2025-08-19 23:27:04,820", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Bluetooth (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638825.0216966, - "msecs": 21.0, - "relativeCreated": 65284.835547, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Bluetooth (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:05,021", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.8207169, - "msecs": 820.0, - "relativeCreated": 65083.855753, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/bt/state/set and payload false", - "asctime": "2025-08-19 23:27:04,820" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.8233132, - "msecs": 823.0, - "relativeCreated": 65086.452053, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'false'", - "asctime": "2025-08-19 23:27:04,823" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.8235064, - "msecs": 823.0, - "relativeCreated": 65086.645528, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", - "asctime": "2025-08-19 23:27:04,823" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.8243737, - "msecs": 824.0, - "relativeCreated": 65087.512796, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", - "asctime": "2025-08-19 23:27:04,824" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.8655124, - "msecs": 865.0, - "relativeCreated": 65128.65146, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:04,865" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638824.865679, - "msecs": 865.0, - "relativeCreated": 65128.818234, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:04,865" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.8659904, - "msecs": 865.0, - "relativeCreated": 65129.12938, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'false'", - "asctime": "2025-08-19 23:27:04,865" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.8664386, - "msecs": 866.0, - "relativeCreated": 65129.577671, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:04,866" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638824.908629, - "msecs": 908.0, - "relativeCreated": 65171.76793, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:04,908" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Bluetooth (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638825.0215173, - "msecs": 21.0, - "relativeCreated": 65284.656342, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Bluetooth (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:05,021" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Bluetooth (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638825.0216424, - "msecs": 21.0, - "relativeCreated": 65284.781626, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Bluetooth (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:05,021" - } - ], - "time_consumption": 5.412101745605469e-05 - } - ], - "time_consumption": 0.6036853790283203, - "time_start": "2025-08-19 23:27:04,418", - "time_finished": "2025-08-19 23:27:05,021" - }, - "REQ-0314": { - "name": "__tLogger__", - "msg": "REQ-0314", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638825.0219593, - "msecs": 21.0, - "relativeCreated": 65285.098482, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0314", - "asctime": "2025-08-19 23:27:05,021", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638825.1224608, - "msecs": 122.0, - "relativeCreated": 65385.600056, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:05,122", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.output.4.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/output/4/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638825.0221324, - "msecs": 22.0, - "relativeCreated": 65285.271567, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/bt/output/4/set and payload false", - "asctime": "2025-08-19 23:27:05,022" - } - ], - "time_consumption": 0.10032844543457031 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638825.2231472, - "msecs": 223.0, - "relativeCreated": 65486.286178, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:05,223", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638825.2229543, - "msecs": 222.0, - "relativeCreated": 65486.093317, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:05,222" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638825.223096, - "msecs": 223.0, - "relativeCreated": 65486.2349, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:05,223" - } - ], - "time_consumption": 5.125999450683594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Bluetooth (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638825.2232454, - "msecs": 223.0, - "relativeCreated": 65486.384333, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Bluetooth (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:05,223", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/bt is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638825.4242957, - "msecs": 424.0, - "relativeCreated": 65687.434728, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/bt is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:05,424", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638825.2233634, - "msecs": 223.0, - "relativeCreated": 65486.502291, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", - "asctime": "2025-08-19 23:27:05,223" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.224261, - "msecs": 224.0, - "relativeCreated": 65487.400085, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", - "asctime": "2025-08-19 23:27:05,224" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.2257316, - "msecs": 225.0, - "relativeCreated": 65488.87058, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:05,225" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638825.2259176, - "msecs": 225.0, - "relativeCreated": 65489.056822, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:05,225" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.2262125, - "msecs": 226.0, - "relativeCreated": 65489.351655, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'true'", - "asctime": "2025-08-19 23:27:05,226" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.226733, - "msecs": 226.0, - "relativeCreated": 65489.871956, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:05,226" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.3087623, - "msecs": 308.0, - "relativeCreated": 65571.901269, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:05,308" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/bt", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638825.4240975, - "msecs": 424.0, - "relativeCreated": 65687.236524, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/bt): True ()", - "asctime": "2025-08-19 23:27:05,424" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/bt", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638825.42424, - "msecs": 424.0, - "relativeCreated": 65687.379135, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/bt): result = True ()", - "asctime": "2025-08-19 23:27:05,424" - } - ], - "time_consumption": 5.555152893066406e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Bluetooth (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638825.4244156, - "msecs": 424.0, - "relativeCreated": 65687.554368, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Bluetooth (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:05,424", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/bt is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638825.625467, - "msecs": 625.0, - "relativeCreated": 65888.606081, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/bt is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:05,625", - "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", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638825.424573, - "msecs": 424.0, - "relativeCreated": 65687.712028, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", - "asctime": "2025-08-19 23:27:05,424" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.4256947, - "msecs": 425.0, - "relativeCreated": 65688.833723, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", - "asctime": "2025-08-19 23:27:05,425" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.4272947, - "msecs": 427.0, - "relativeCreated": 65690.433679, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:05,427" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638825.427462, - "msecs": 427.0, - "relativeCreated": 65690.601085, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:05,427" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.4277732, - "msecs": 427.0, - "relativeCreated": 65690.912277, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'false'", - "asctime": "2025-08-19 23:27:05,427" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.4283261, - "msecs": 428.0, - "relativeCreated": 65691.465223, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:05,428" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.51078, - "msecs": 510.0, - "relativeCreated": 65773.919045, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:05,510" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/bt", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638825.6252656, - "msecs": 625.0, - "relativeCreated": 65888.404605, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/bt): False ()", - "asctime": "2025-08-19 23:27:05,625" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/bt", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638825.6254117, - "msecs": 625.0, - "relativeCreated": 65888.550734, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/bt): result = False ()", - "asctime": "2025-08-19 23:27:05,625" - } - ], - "time_consumption": 5.53131103515625e-05 - } - ], - "time_consumption": 0.6035077571868896, - "time_start": "2025-08-19 23:27:05,021", - "time_finished": "2025-08-19 23:27:05,625" - }, - "REQ-0315": { - "name": "__tLogger__", - "msg": "REQ-0315", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638825.625721, - "msecs": 625.0, - "relativeCreated": 65888.860203, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0315", - "asctime": "2025-08-19 23:27:05,625", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638825.7261307, - "msecs": 726.0, - "relativeCreated": 65989.269567, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:05,726", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638825.8268383, - "msecs": 826.0, - "relativeCreated": 66089.977395, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:05,826", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638825.8266363, - "msecs": 826.0, - "relativeCreated": 66089.775329, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:05,826" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638825.8267844, - "msecs": 826.0, - "relativeCreated": 66089.923388, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:05,826" - } - ], - "time_consumption": 5.3882598876953125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Phono (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638825.8269756, - "msecs": 826.0, - "relativeCreated": 66090.114417, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Phono (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:05,826", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638826.0282028, - "msecs": 28.0, - "relativeCreated": 66291.341848, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:06,028", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638825.8271353, - "msecs": 827.0, - "relativeCreated": 66090.274211, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", - "asctime": "2025-08-19 23:27:05,827" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.8283854, - "msecs": 828.0, - "relativeCreated": 66091.52421, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", - "asctime": "2025-08-19 23:27:05,828" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.8301222, - "msecs": 830.0, - "relativeCreated": 66093.261235, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:05,830" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638825.8302894, - "msecs": 830.0, - "relativeCreated": 66093.428418, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:05,830" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.8305984, - "msecs": 830.0, - "relativeCreated": 66093.737292, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'true'", - "asctime": "2025-08-19 23:27:05,830" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.8310914, - "msecs": 831.0, - "relativeCreated": 66094.230562, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:05,831" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638825.873407, - "msecs": 873.0, - "relativeCreated": 66136.545988, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:05,873" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638826.0279794, - "msecs": 27.0, - "relativeCreated": 66291.118281, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:27:06,027" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638826.0281222, - "msecs": 28.0, - "relativeCreated": 66291.261137, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:27:06,028" - } - ], - "time_consumption": 8.058547973632812e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Phono (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638826.0283191, - "msecs": 28.0, - "relativeCreated": 66291.458244, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Phono (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:06,028", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638826.2294347, - "msecs": 229.0, - "relativeCreated": 66492.573659, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:06,229", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638826.028446, - "msecs": 28.0, - "relativeCreated": 66291.585027, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", - "asctime": "2025-08-19 23:27:06,028" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.029532, - "msecs": 29.0, - "relativeCreated": 66292.670804, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", - "asctime": "2025-08-19 23:27:06,029" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.0313714, - "msecs": 31.0, - "relativeCreated": 66294.510274, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:06,031" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638826.031537, - "msecs": 31.0, - "relativeCreated": 66294.67626, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:06,031" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/phono/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.0318544, - "msecs": 31.0, - "relativeCreated": 66294.993369, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'false'", - "asctime": "2025-08-19 23:27:06,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'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.0326025, - "msecs": 32.0, - "relativeCreated": 66295.741667, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:06,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'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.115745, - "msecs": 115.0, - "relativeCreated": 66378.884147, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:06,115" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638826.2292523, - "msecs": 229.0, - "relativeCreated": 66492.391484, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:06,229" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638826.2293866, - "msecs": 229.0, - "relativeCreated": 66492.525394, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:06,229" - } - ], - "time_consumption": 4.8160552978515625e-05 - } - ], - "time_consumption": 0.6037137508392334, - "time_start": "2025-08-19 23:27:05,625", - "time_finished": "2025-08-19 23:27:06,229" - }, - "REQ-0316": { - "name": "__tLogger__", - "msg": "REQ-0316", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638826.229692, - "msecs": 229.0, - "relativeCreated": 66492.830868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0316", - "asctime": "2025-08-19 23:27:06,229", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638826.3299637, - "msecs": 329.0, - "relativeCreated": 66593.102822, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:06,329", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638826.4307573, - "msecs": 430.0, - "relativeCreated": 66693.896464, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:06,430", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638826.4305344, - "msecs": 430.0, - "relativeCreated": 66693.673456, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:06,430" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638826.4307008, - "msecs": 430.0, - "relativeCreated": 66693.839716, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:06,430" - } - ], - "time_consumption": 5.650520324707031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "CD_Player (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638826.430875, - "msecs": 430.0, - "relativeCreated": 66694.014121, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of CD_Player (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:06,430", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638826.6319406, - "msecs": 631.0, - "relativeCreated": 66895.079707, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:06,631", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638826.4310415, - "msecs": 431.0, - "relativeCreated": 66694.180517, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", - "asctime": "2025-08-19 23:27:06,431" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.4329417, - "msecs": 432.0, - "relativeCreated": 66696.080458, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", - "asctime": "2025-08-19 23:27:06,432" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.4338262, - "msecs": 433.0, - "relativeCreated": 66696.965388, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:06,433" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638826.4340277, - "msecs": 434.0, - "relativeCreated": 66697.166805, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:06,434" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.4343467, - "msecs": 434.0, - "relativeCreated": 66697.485687, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", - "asctime": "2025-08-19 23:27:06,434" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.4348068, - "msecs": 434.0, - "relativeCreated": 66697.945787, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:06,434" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.5171978, - "msecs": 517.0, - "relativeCreated": 66780.33672, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:06,517" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638826.6317267, - "msecs": 631.0, - "relativeCreated": 66894.865826, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:27:06,631" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638826.6318605, - "msecs": 631.0, - "relativeCreated": 66894.999386, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:27:06,631" - } - ], - "time_consumption": 8.0108642578125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "CD_Player (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638826.632052, - "msecs": 632.0, - "relativeCreated": 66895.190961, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of CD_Player (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:06,632", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638826.8331277, - "msecs": 833.0, - "relativeCreated": 67096.266629, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:06,833", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638826.63217, - "msecs": 632.0, - "relativeCreated": 66895.308992, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", - "asctime": "2025-08-19 23:27:06,632" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.6330788, - "msecs": 633.0, - "relativeCreated": 66896.21783, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", - "asctime": "2025-08-19 23:27:06,633" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.634656, - "msecs": 634.0, - "relativeCreated": 66897.794911, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:06,634" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638826.6348212, - "msecs": 634.0, - "relativeCreated": 66897.960221, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:06,634" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.6351504, - "msecs": 635.0, - "relativeCreated": 66898.289373, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2025-08-19 23:27:06,635" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.6356122, - "msecs": 635.0, - "relativeCreated": 66898.751184, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:06,635" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638826.7177107, - "msecs": 717.0, - "relativeCreated": 66980.849768, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:06,717" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638826.8328745, - "msecs": 832.0, - "relativeCreated": 67096.013569, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:06,832" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638826.8330705, - "msecs": 833.0, - "relativeCreated": 67096.20951, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:06,833" - } - ], - "time_consumption": 5.7220458984375e-05 - } - ], - "time_consumption": 0.603435754776001, - "time_start": "2025-08-19 23:27:06,229", - "time_finished": "2025-08-19 23:27:06,833" - }, - "REQ-0317": { - "name": "__tLogger__", - "msg": "REQ-0317", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638826.8333724, - "msecs": 833.0, - "relativeCreated": 67096.511545, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0317", - "asctime": "2025-08-19 23:27:06,833", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638826.9337964, - "msecs": 933.0, - "relativeCreated": 67196.935242, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:06,933", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638827.0346117, - "msecs": 34.0, - "relativeCreated": 67297.75066, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:07,034", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638827.0343525, - "msecs": 34.0, - "relativeCreated": 67297.49159, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:07,034" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638827.0345538, - "msecs": 34.0, - "relativeCreated": 67297.692814, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:07,034" - } - ], - "time_consumption": 5.793571472167969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Bluetooth (gfw.dirk)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638827.0347266, - "msecs": 34.0, - "relativeCreated": 67297.865682, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Bluetooth (gfw.dirk) to True", - "asctime": "2025-08-19 23:27:07,034", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638827.2357407, - "msecs": 235.0, - "relativeCreated": 67498.879764, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:07,235", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.0348525, - "msecs": 34.0, - "relativeCreated": 67297.991537, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", - "asctime": "2025-08-19 23:27:07,034" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.0360358, - "msecs": 36.0, - "relativeCreated": 67299.174723, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", - "asctime": "2025-08-19 23:27:07,036" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.0375562, - "msecs": 37.0, - "relativeCreated": 67300.695355, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2025-08-19 23:27:07,037" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.0377367, - "msecs": 37.0, - "relativeCreated": 67300.875645, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2025-08-19 23:27:07,037" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.0380888, - "msecs": 38.0, - "relativeCreated": 67301.227604, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'true'", - "asctime": "2025-08-19 23:27:07,038" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.0385718, - "msecs": 38.0, - "relativeCreated": 67301.71086, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2025-08-19 23:27:07,038" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.081596, - "msecs": 81.0, - "relativeCreated": 67344.734847, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2025-08-19 23:27:07,081" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638827.2355442, - "msecs": 235.0, - "relativeCreated": 67498.683395, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): True ()", - "asctime": "2025-08-19 23:27:07,235" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638827.235688, - "msecs": 235.0, - "relativeCreated": 67498.827031, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = True ()", - "asctime": "2025-08-19 23:27:07,235" - } - ], - "time_consumption": 5.269050598144531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Bluetooth (gfw.dirk)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638827.235857, - "msecs": 235.0, - "relativeCreated": 67498.995859, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Bluetooth (gfw.dirk) to False", - "asctime": "2025-08-19 23:27:07,235", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Amplifier (gfw.dirk) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638827.4369426, - "msecs": 436.0, - "relativeCreated": 67700.081541, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Amplifier (gfw.dirk) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:07,436", - "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", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.236048, - "msecs": 236.0, - "relativeCreated": 67499.186933, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", - "asctime": "2025-08-19 23:27:07,236" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.2372181, - "msecs": 237.0, - "relativeCreated": 67500.35714, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", - "asctime": "2025-08-19 23:27:07,237" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.2386851, - "msecs": 238.0, - "relativeCreated": 67501.824092, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2025-08-19 23:27:07,238" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.2388492, - "msecs": 238.0, - "relativeCreated": 67501.98835, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2025-08-19 23:27:07,238" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/bt/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.2392058, - "msecs": 239.0, - "relativeCreated": 67502.34493, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'false'", - "asctime": "2025-08-19 23:27:07,239" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.239674, - "msecs": 239.0, - "relativeCreated": 67502.813043, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2025-08-19 23:27:07,239" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.3225684, - "msecs": 322.0, - "relativeCreated": 67585.707555, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2025-08-19 23:27:07,322" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638827.4367123, - "msecs": 436.0, - "relativeCreated": 67699.85119, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Amplifier (gfw.dirk)): False ()", - "asctime": "2025-08-19 23:27:07,436" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Amplifier (gfw.dirk)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638827.4368575, - "msecs": 436.0, - "relativeCreated": 67699.996221, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Amplifier (gfw.dirk)): result = False ()", - "asctime": "2025-08-19 23:27:07,436" - } - ], - "time_consumption": 8.511543273925781e-05 - } - ], - "time_consumption": 0.6035702228546143, - "time_start": "2025-08-19 23:27:06,833", - "time_finished": "2025-08-19 23:27:07,436" - }, - "REQ-0318": { - "name": "__tLogger__", - "msg": "REQ-0318", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638827.4371948, - "msecs": 437.0, - "relativeCreated": 67700.33376, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0318", - "asctime": "2025-08-19 23:27:07,437", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638827.5379593, - "msecs": 537.0, - "relativeCreated": 67801.098523, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:07,537", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.437316, - "msecs": 437.0, - "relativeCreated": 67700.454877, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:07,437" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.4376504, - "msecs": 437.0, - "relativeCreated": 67700.789506, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:07,437" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.438567, - "msecs": 438.0, - "relativeCreated": 67701.705943, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:07,438" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.4389274, - "msecs": 438.0, - "relativeCreated": 67702.066358, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:07,438" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.4793892, - "msecs": 479.0, - "relativeCreated": 67742.528286, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:07,479" - } - ], - "time_consumption": 0.058570146560668945 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638827.6389587, - "msecs": 638.0, - "relativeCreated": 67902.097588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:27:07,638", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.5382335, - "msecs": 538.0, - "relativeCreated": 67801.37254, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:07,538" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.5385342, - "msecs": 538.0, - "relativeCreated": 67801.673086, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:07,538" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.540597, - "msecs": 540.0, - "relativeCreated": 67803.736069, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:07,540" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.5409338, - "msecs": 540.0, - "relativeCreated": 67804.072829, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:07,540" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.583489, - "msecs": 583.0, - "relativeCreated": 67846.628063, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:07,583" - } - ], - "time_consumption": 0.05546975135803223 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638827.7396889, - "msecs": 739.0, - "relativeCreated": 68002.828029, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:27:07,739", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638827.7394798, - "msecs": 739.0, - "relativeCreated": 68002.61885, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:27:07,739" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638827.7396376, - "msecs": 739.0, - "relativeCreated": 68002.776609, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:27:07,739" - } - ], - "time_consumption": 5.125999450683594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638827.7398, - "msecs": 739.0, - "relativeCreated": 68002.939015, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 0", - "asctime": "2025-08-19 23:27:07,739", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638827.9409525, - "msecs": 940.0, - "relativeCreated": 68204.091479, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:07,940", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.7399354, - "msecs": 739.0, - "relativeCreated": 68003.074485, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:27:07,739" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.7423732, - "msecs": 742.0, - "relativeCreated": 68005.512241, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:27:07,742" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.7425942, - "msecs": 742.0, - "relativeCreated": 68005.733312, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:07,742" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.7431965, - "msecs": 743.0, - "relativeCreated": 68006.335408, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:07,743" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.7846391, - "msecs": 784.0, - "relativeCreated": 68047.778121, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:27:07,784" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638827.940684, - "msecs": 940.0, - "relativeCreated": 68203.823027, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 0 ()", - "asctime": "2025-08-19 23:27:07,940" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638827.9408584, - "msecs": 940.0, - "relativeCreated": 68203.997304, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 0 ()", - "asctime": "2025-08-19 23:27:07,940" - } - ], - "time_consumption": 9.417533874511719e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638827.9410875, - "msecs": 941.0, - "relativeCreated": 68204.226457, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 20", - "asctime": "2025-08-19 23:27:07,941", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638828.1420789, - "msecs": 142.0, - "relativeCreated": 68405.217985, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:27:08,142", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.9412158, - "msecs": 941.0, - "relativeCreated": 68204.354828, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:27:07,941" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.9437883, - "msecs": 943.0, - "relativeCreated": 68206.927287, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:27:07,943" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638827.944042, - "msecs": 944.0, - "relativeCreated": 68207.181114, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:07,944" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.9446328, - "msecs": 944.0, - "relativeCreated": 68207.77171, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:07,944" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638827.986275, - "msecs": 986.0, - "relativeCreated": 68249.414072, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:27:07,986" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638828.1418254, - "msecs": 141.0, - "relativeCreated": 68404.964521, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 20 ()", - "asctime": "2025-08-19 23:27:08,141" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638828.1420016, - "msecs": 142.0, - "relativeCreated": 68405.140652, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 20 ()", - "asctime": "2025-08-19 23:27:08,142" - } - ], - "time_consumption": 7.724761962890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638828.1421971, - "msecs": 142.0, - "relativeCreated": 68405.336322, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 40", - "asctime": "2025-08-19 23:27:08,142", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638828.3432863, + "created": 1755888840.3432484, "msecs": 343.0, - "relativeCreated": 68606.425382, - "thread": 131449228267776, + "relativeCreated": 2218.057642, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:27:08,343", + "message": "Setting state of Shelly.relay/0 (ffe.livingroom.main_light) to True", + "asctime": "2025-08-22 20:54:00,343", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness.set", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/main_light/brightness/set", - "40" + "shellies/ffe/livingroom/main_light/relay/0", + "on" ], "levelname": "DEBUG", "levelno": 10, @@ -91786,5572 +7928,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638828.1423204, - "msecs": 142.0, - "relativeCreated": 68405.459424, - "thread": 131449228267776, + "created": 1755888840.2425506, + "msecs": 242.0, + "relativeCreated": 2117.359647, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:27:08,142" + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:00,242" }, { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.1446137, - "msecs": 144.0, - "relativeCreated": 68407.752551, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:27:08,144" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638828.1448395, - "msecs": 144.0, - "relativeCreated": 68407.978314, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:08,144" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.1453743, - "msecs": 145.0, - "relativeCreated": 68408.513334, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:08,145" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.1866667, - "msecs": 186.0, - "relativeCreated": 68449.805705, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:27:08,186" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638828.3430746, - "msecs": 343.0, - "relativeCreated": 68606.213637, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 40 ()", - "asctime": "2025-08-19 23:27:08,343" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638828.3432276, - "msecs": 343.0, - "relativeCreated": 68606.366539, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 40 ()", - "asctime": "2025-08-19 23:27:08,343" - } - ], - "time_consumption": 5.8650970458984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638828.343438, - "msecs": 343.0, - "relativeCreated": 68606.576922, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 60", - "asctime": "2025-08-19 23:27:08,343", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638828.5445912, - "msecs": 544.0, - "relativeCreated": 68807.730205, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:27:08,544", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638828.3435621, - "msecs": 343.0, - "relativeCreated": 68606.70117, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:27:08,343" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.3464718, - "msecs": 346.0, - "relativeCreated": 68609.610605, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:27:08,346" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638828.3467135, - "msecs": 346.0, - "relativeCreated": 68609.852618, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:08,346" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.3472824, - "msecs": 347.0, - "relativeCreated": 68610.421471, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:08,347" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.3893242, - "msecs": 389.0, - "relativeCreated": 68652.463326, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:27:08,389" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638828.5443778, - "msecs": 544.0, - "relativeCreated": 68807.516847, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 60 ()", - "asctime": "2025-08-19 23:27:08,544" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638828.5445328, - "msecs": 544.0, - "relativeCreated": 68807.67166, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 60 ()", - "asctime": "2025-08-19 23:27:08,544" - } - ], - "time_consumption": 5.841255187988281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638828.544715, - "msecs": 544.0, - "relativeCreated": 68807.854014, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 80", - "asctime": "2025-08-19 23:27:08,544", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638828.745868, - "msecs": 745.0, - "relativeCreated": 69009.006961, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:27:08,745", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638828.5448368, - "msecs": 544.0, - "relativeCreated": 68807.975963, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:27:08,544" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.5474741, - "msecs": 547.0, - "relativeCreated": 68810.613252, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:27:08,547" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638828.5477183, - "msecs": 547.0, - "relativeCreated": 68810.857283, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:08,547" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.5484297, - "msecs": 548.0, - "relativeCreated": 68811.568727, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:08,548" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.5904944, - "msecs": 590.0, - "relativeCreated": 68853.633371, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:27:08,590" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638828.7456796, - "msecs": 745.0, - "relativeCreated": 69008.818664, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 80 ()", - "asctime": "2025-08-19 23:27:08,745" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638828.745818, - "msecs": 745.0, - "relativeCreated": 69008.956909, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 80 ()", - "asctime": "2025-08-19 23:27:08,745" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638828.746023, - "msecs": 746.0, - "relativeCreated": 69009.161864, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 100", - "asctime": "2025-08-19 23:27:08,746", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638828.9470146, - "msecs": 947.0, - "relativeCreated": 69210.153545, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:27:08,947", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638828.7461596, - "msecs": 746.0, - "relativeCreated": 69009.298556, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:08,746" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.748774, - "msecs": 748.0, - "relativeCreated": 69011.913102, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:08,748" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638828.7490237, - "msecs": 749.0, - "relativeCreated": 69012.162629, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:08,749" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.7496665, - "msecs": 749.0, - "relativeCreated": 69012.80559, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:08,749" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638828.7912567, - "msecs": 791.0, - "relativeCreated": 69054.3955, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:08,791" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638828.9467645, - "msecs": 946.0, - "relativeCreated": 69209.903638, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 100 ()", - "asctime": "2025-08-19 23:27:08,946" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638828.9469554, - "msecs": 946.0, - "relativeCreated": 69210.094521, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 100 ()", - "asctime": "2025-08-19 23:27:08,946" - } - ], - "time_consumption": 5.91278076171875e-05 - } - ], - "time_consumption": 1.509819746017456, - "time_start": "2025-08-19 23:27:07,437", - "time_finished": "2025-08-19 23:27:08,947" - }, - "REQ-0319": { - "name": "__tLogger__", - "msg": "REQ-0319", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638828.947277, - "msecs": 947.0, - "relativeCreated": 69210.416076, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0319", - "asctime": "2025-08-19 23:27:08,947", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638829.0475338, - "msecs": 47.0, - "relativeCreated": 69310.672762, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:09,047", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638829.148361, - "msecs": 148.0, - "relativeCreated": 69411.50009, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:27:09,148", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638829.0478373, - "msecs": 47.0, - "relativeCreated": 69310.976256, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:09,047" - } - ], - "time_consumption": 0.10052371025085449 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638829.249152, - "msecs": 249.0, - "relativeCreated": 69512.290924, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:27:09,249", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638829.2489302, - "msecs": 248.0, - "relativeCreated": 69512.069353, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:27:09,248" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638829.249097, - "msecs": 249.0, - "relativeCreated": 69512.236346, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:27:09,249" - } - ], - "time_consumption": 5.4836273193359375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638829.2492638, - "msecs": 249.0, - "relativeCreated": 69512.402975, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 0", - "asctime": "2025-08-19 23:27:09,249", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638829.4503608, - "msecs": 450.0, - "relativeCreated": 69713.499934, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:09,450", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638829.249428, - "msecs": 249.0, - "relativeCreated": 69512.566993, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:09,249" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.2505565, - "msecs": 250.0, - "relativeCreated": 69513.695325, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:09,250" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.2519543, - "msecs": 251.0, - "relativeCreated": 69515.093445, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:27:09,251" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638829.450181, - "msecs": 450.0, - "relativeCreated": 69713.320138, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 0 ()", - "asctime": "2025-08-19 23:27:09,450" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638829.450308, - "msecs": 450.0, - "relativeCreated": 69713.446976, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 0 ()", - "asctime": "2025-08-19 23:27:09,450" - } - ], - "time_consumption": 5.269050598144531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638829.4504635, - "msecs": 450.0, - "relativeCreated": 69713.602506, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 20", - "asctime": "2025-08-19 23:27:09,450", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638829.651577, - "msecs": 651.0, - "relativeCreated": 69914.715977, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:27:09,651", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638829.4506323, - "msecs": 450.0, - "relativeCreated": 69713.771498, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:09,450" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.4515307, - "msecs": 451.0, - "relativeCreated": 69714.669836, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:09,451" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.4529276, - "msecs": 452.0, - "relativeCreated": 69716.066603, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:27:09,452" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638829.6513743, - "msecs": 651.0, - "relativeCreated": 69914.513344, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 20 ()", - "asctime": "2025-08-19 23:27:09,651" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638829.6515214, - "msecs": 651.0, - "relativeCreated": 69914.660478, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 20 ()", - "asctime": "2025-08-19 23:27:09,651" - } - ], - "time_consumption": 5.555152893066406e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638829.6516905, - "msecs": 651.0, - "relativeCreated": 69914.829558, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 40", - "asctime": "2025-08-19 23:27:09,651", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638829.8529732, - "msecs": 852.0, - "relativeCreated": 70116.112219, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:27:09,852", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638829.651848, - "msecs": 651.0, - "relativeCreated": 69914.987264, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:09,651" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.6529825, - "msecs": 652.0, - "relativeCreated": 69916.121418, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:09,652" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.6542616, - "msecs": 654.0, - "relativeCreated": 69917.400413, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:27:09,654" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638829.852716, - "msecs": 852.0, - "relativeCreated": 70115.855075, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 40 ()", - "asctime": "2025-08-19 23:27:09,852" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638829.8528724, - "msecs": 852.0, - "relativeCreated": 70116.011464, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 40 ()", - "asctime": "2025-08-19 23:27:09,852" - } - ], - "time_consumption": 0.00010085105895996094 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638829.8530924, - "msecs": 853.0, - "relativeCreated": 70116.231372, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 60", - "asctime": "2025-08-19 23:27:09,853", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638830.0543175, - "msecs": 54.0, - "relativeCreated": 70317.45662, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:27:10,054", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638829.8532655, - "msecs": 853.0, - "relativeCreated": 70116.404535, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:09,853" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.8543503, - "msecs": 854.0, - "relativeCreated": 70117.489391, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:09,854" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638829.8559105, - "msecs": 855.0, - "relativeCreated": 70119.049655, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:27:09,855" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638830.0541024, - "msecs": 54.0, - "relativeCreated": 70317.24144, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 60 ()", - "asctime": "2025-08-19 23:27:10,054" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638830.054258, - "msecs": 54.0, - "relativeCreated": 70317.397178, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 60 ()", - "asctime": "2025-08-19 23:27:10,054" - } - ], - "time_consumption": 5.936622619628906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638830.0544384, - "msecs": 54.0, - "relativeCreated": 70317.577384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 80", - "asctime": "2025-08-19 23:27:10,054", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638830.255681, - "msecs": 255.0, - "relativeCreated": 70518.819994, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:27:10,255", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.0546424, - "msecs": 54.0, - "relativeCreated": 70317.781477, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:10,054" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.055685, - "msecs": 55.0, - "relativeCreated": 70318.824017, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:10,055" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.057185, - "msecs": 57.0, - "relativeCreated": 70320.324062, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:27:10,057" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638830.2554784, - "msecs": 255.0, - "relativeCreated": 70518.617266, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 80 ()", - "asctime": "2025-08-19 23:27:10,255" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638830.2556245, - "msecs": 255.0, - "relativeCreated": 70518.763524, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 80 ()", - "asctime": "2025-08-19 23:27:10,255" - } - ], - "time_consumption": 5.650520324707031e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638830.2557926, - "msecs": 255.0, - "relativeCreated": 70518.931676, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 100", - "asctime": "2025-08-19 23:27:10,255", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638830.457061, - "msecs": 457.0, - "relativeCreated": 70720.200195, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:27:10,457", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.2560077, - "msecs": 256.0, - "relativeCreated": 70519.14672, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:10,256" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.2570984, - "msecs": 257.0, - "relativeCreated": 70520.237482, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:10,257" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.258453, - "msecs": 258.0, - "relativeCreated": 70521.5919, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:10,258" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638830.456789, - "msecs": 456.0, - "relativeCreated": 70719.927951, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 100 ()", - "asctime": "2025-08-19 23:27:10,456" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638830.456979, - "msecs": 456.0, - "relativeCreated": 70720.117982, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 100 ()", - "asctime": "2025-08-19 23:27:10,456" - } - ], - "time_consumption": 8.20159912109375e-05 - } - ], - "time_consumption": 1.5097839832305908, - "time_start": "2025-08-19 23:27:08,947", - "time_finished": "2025-08-19 23:27:10,457" - }, - "REQ-0320": { - "name": "__tLogger__", - "msg": "REQ-0320", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638830.4573138, - "msecs": 457.0, - "relativeCreated": 70720.452712, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0320", - "asctime": "2025-08-19 23:27:10,457", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638830.557583, - "msecs": 557.0, - "relativeCreated": 70820.722095, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:10,557", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638830.6590765, - "msecs": 659.0, - "relativeCreated": 70922.21544, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:27:10,659", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.558045, - "msecs": 558.0, - "relativeCreated": 70821.183933, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:10,558" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.5583584, - "msecs": 558.0, - "relativeCreated": 70821.497462, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:10,558" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.5605752, - "msecs": 560.0, - "relativeCreated": 70823.714153, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:10,560" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.560946, - "msecs": 560.0, - "relativeCreated": 70824.084886, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:10,560" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.6031706, - "msecs": 603.0, - "relativeCreated": 70866.309571, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:10,603" - } - ], - "time_consumption": 0.055905818939208984 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638830.759657, - "msecs": 759.0, - "relativeCreated": 71022.795867, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:27:10,759", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638830.759445, - "msecs": 759.0, - "relativeCreated": 71022.583958, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:27:10,759" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638830.7595987, - "msecs": 759.0, - "relativeCreated": 71022.737813, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:27:10,759" - } - ], - "time_consumption": 5.817413330078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638830.7597713, - "msecs": 759.0, - "relativeCreated": 71022.910464, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 0", - "asctime": "2025-08-19 23:27:10,759", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638830.9605803, - "msecs": 960.0, - "relativeCreated": 71223.719279, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:10,960", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.759883, - "msecs": 759.0, - "relativeCreated": 71023.021913, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 0", - "asctime": "2025-08-19 23:27:10,759" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.7621536, - "msecs": 762.0, - "relativeCreated": 71025.292788, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:27:10,762" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.7623868, - "msecs": 762.0, - "relativeCreated": 71025.525637, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:10,762" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.762958, - "msecs": 762.0, - "relativeCreated": 71026.097143, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:10,762" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.8041642, - "msecs": 804.0, - "relativeCreated": 71067.303206, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:27:10,804" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638830.9603832, - "msecs": 960.0, - "relativeCreated": 71223.522246, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 0 ()", - "asctime": "2025-08-19 23:27:10,960" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638830.9605262, - "msecs": 960.0, - "relativeCreated": 71223.665382, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 0 ()", - "asctime": "2025-08-19 23:27:10,960" - } - ], - "time_consumption": 5.412101745605469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638830.9606907, - "msecs": 960.0, - "relativeCreated": 71223.829811, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 2", - "asctime": "2025-08-19 23:27:10,960", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638831.1618204, - "msecs": 161.0, - "relativeCreated": 71424.959374, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:27:11,161", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.9608262, - "msecs": 960.0, - "relativeCreated": 71223.965203, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 2", - "asctime": "2025-08-19 23:27:10,960" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.9633346, - "msecs": 963.0, - "relativeCreated": 71226.473689, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:27:10,963" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638830.9635494, - "msecs": 963.0, - "relativeCreated": 71226.688485, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:10,963" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638830.9641492, - "msecs": 964.0, - "relativeCreated": 71227.288224, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:10,964" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.005273, - "msecs": 5.0, - "relativeCreated": 71268.411993, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:27:11,005" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638831.1616206, - "msecs": 161.0, - "relativeCreated": 71424.759845, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 2 ()", - "asctime": "2025-08-19 23:27:11,161" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638831.161766, - "msecs": 161.0, - "relativeCreated": 71424.905226, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 2 ()", - "asctime": "2025-08-19 23:27:11,161" - } - ], - "time_consumption": 5.435943603515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638831.1619678, - "msecs": 161.0, - "relativeCreated": 71425.10696, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 4", - "asctime": "2025-08-19 23:27:11,161", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638831.3628876, - "msecs": 362.0, - "relativeCreated": 71626.026649, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:27:11,362", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.1620834, - "msecs": 162.0, - "relativeCreated": 71425.222285, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 4", - "asctime": "2025-08-19 23:27:11,162" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.1644895, - "msecs": 164.0, - "relativeCreated": 71427.628446, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:27:11,164" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.1647143, - "msecs": 164.0, - "relativeCreated": 71427.853266, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:11,164" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.1652853, - "msecs": 165.0, - "relativeCreated": 71428.424382, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:11,165" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.2073877, - "msecs": 207.0, - "relativeCreated": 71470.526657, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:27:11,207" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638831.3626962, - "msecs": 362.0, - "relativeCreated": 71625.835169, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 4 ()", - "asctime": "2025-08-19 23:27:11,362" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638831.3628368, - "msecs": 362.0, - "relativeCreated": 71625.975646, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 4 ()", - "asctime": "2025-08-19 23:27:11,362" - } - ], - "time_consumption": 5.078315734863281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638831.363007, - "msecs": 363.0, - "relativeCreated": 71626.145955, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 6", - "asctime": "2025-08-19 23:27:11,363", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638831.5639613, - "msecs": 563.0, - "relativeCreated": 71827.100293, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:27:11,563", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.3631136, - "msecs": 363.0, - "relativeCreated": 71626.25276, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 6", - "asctime": "2025-08-19 23:27:11,363" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"color_temp\": 372}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.3654642, - "msecs": 365.0, - "relativeCreated": 71628.603405, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:27:11,365" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.3656924, - "msecs": 365.0, - "relativeCreated": 71628.831486, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:11,365" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.3662806, - "msecs": 366.0, - "relativeCreated": 71629.419332, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:11,366" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.4074552, - "msecs": 407.0, - "relativeCreated": 71670.59413, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:27:11,407" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638831.5637305, - "msecs": 563.0, - "relativeCreated": 71826.869556, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 6 ()", - "asctime": "2025-08-19 23:27:11,563" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638831.5638692, - "msecs": 563.0, - "relativeCreated": 71827.008282, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 6 ()", - "asctime": "2025-08-19 23:27:11,563" - } - ], - "time_consumption": 9.202957153320312e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638831.5641072, - "msecs": 564.0, - "relativeCreated": 71827.246332, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 8", - "asctime": "2025-08-19 23:27:11,564", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638831.7652373, - "msecs": 765.0, - "relativeCreated": 72028.376259, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:27:11,765", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.5642295, - "msecs": 564.0, - "relativeCreated": 71827.36832, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 8", - "asctime": "2025-08-19 23:27:11,564" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.5662782, - "msecs": 566.0, - "relativeCreated": 71829.417074, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:27:11,566" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.5664866, - "msecs": 566.0, - "relativeCreated": 71829.625645, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:11,566" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.5670192, - "msecs": 567.0, - "relativeCreated": 71830.158204, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:11,567" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.6087847, - "msecs": 608.0, - "relativeCreated": 71871.923641, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:27:11,608" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638831.7650414, - "msecs": 765.0, - "relativeCreated": 72028.180367, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 8 ()", - "asctime": "2025-08-19 23:27:11,765" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638831.765184, - "msecs": 765.0, - "relativeCreated": 72028.323118, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 8 ()", - "asctime": "2025-08-19 23:27:11,765" - } - ], - "time_consumption": 5.340576171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638831.7653744, - "msecs": 765.0, - "relativeCreated": 72028.513392, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/main_light to 10", - "asctime": "2025-08-19 23:27:11,765", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638831.966332, - "msecs": 966.0, - "relativeCreated": 72229.471004, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:27:11,966", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.7654955, - "msecs": 765.0, - "relativeCreated": 72028.634465, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:11,765" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.7678106, - "msecs": 767.0, - "relativeCreated": 72030.949682, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:11,767" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638831.7680364, - "msecs": 768.0, - "relativeCreated": 72031.175457, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:11,768" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.7686334, - "msecs": 768.0, - "relativeCreated": 72031.772442, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:11,768" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638831.8094463, - "msecs": 809.0, - "relativeCreated": 72072.58547, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:11,809" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638831.9661367, - "msecs": 966.0, - "relativeCreated": 72229.27557, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/main_light): 10 ()", - "asctime": "2025-08-19 23:27:11,966" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638831.9662795, - "msecs": 966.0, - "relativeCreated": 72229.418527, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/main_light): result = 10 ()", - "asctime": "2025-08-19 23:27:11,966" - } - ], - "time_consumption": 5.245208740234375e-05 - } - ], - "time_consumption": 1.5090181827545166, - "time_start": "2025-08-19 23:27:10,457", - "time_finished": "2025-08-19 23:27:11,966" - }, - "REQ-0321": { - "name": "__tLogger__", - "msg": "REQ-0321", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638831.9665961, - "msecs": 966.0, - "relativeCreated": 72229.735041, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0321", - "asctime": "2025-08-19 23:27:11,966", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638832.0669506, - "msecs": 66.0, - "relativeCreated": 72330.089728, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:12,066", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638832.1677413, - "msecs": 167.0, - "relativeCreated": 72430.880087, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:27:12,167", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp/set", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638832.0672336, - "msecs": 67.0, - "relativeCreated": 72330.372636, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:12,067" - } - ], - "time_consumption": 0.10050773620605469 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638832.2685387, - "msecs": 268.0, - "relativeCreated": 72531.677664, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:27:12,268", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638832.2683158, - "msecs": 268.0, - "relativeCreated": 72531.454916, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:27:12,268" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638832.2684824, - "msecs": 268.0, - "relativeCreated": 72531.621629, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:27:12,268" - } - ], - "time_consumption": 5.626678466796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638832.2686498, - "msecs": 268.0, - "relativeCreated": 72531.788806, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 0", - "asctime": "2025-08-19 23:27:12,268", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638832.4699383, - "msecs": 469.0, - "relativeCreated": 72733.077257, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:12,469", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638832.2688103, - "msecs": 268.0, - "relativeCreated": 72531.949181, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:12,268" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.269594, - "msecs": 269.0, - "relativeCreated": 72532.73287, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:12,269" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.2709575, - "msecs": 270.0, - "relativeCreated": 72534.096475, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:27:12,270" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638832.4697, - "msecs": 469.0, - "relativeCreated": 72732.839211, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 0 ()", - "asctime": "2025-08-19 23:27:12,469" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638832.4698515, - "msecs": 469.0, - "relativeCreated": 72732.990356, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 0 ()", - "asctime": "2025-08-19 23:27:12,469" - } - ], - "time_consumption": 8.678436279296875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638832.4700854, - "msecs": 470.0, - "relativeCreated": 72733.224276, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 2", - "asctime": "2025-08-19 23:27:12,470", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638832.6711714, - "msecs": 671.0, - "relativeCreated": 72934.310218, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:27:12,671", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638832.4702694, - "msecs": 470.0, - "relativeCreated": 72733.408385, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:12,470" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.4713686, - "msecs": 471.0, - "relativeCreated": 72734.507542, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:12,471" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.4728029, - "msecs": 472.0, - "relativeCreated": 72735.94188, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:27:12,472" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638832.6709461, - "msecs": 670.0, - "relativeCreated": 72934.085119, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 2 ()", - "asctime": "2025-08-19 23:27:12,670" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638832.6711152, - "msecs": 671.0, - "relativeCreated": 72934.254228, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 2 ()", - "asctime": "2025-08-19 23:27:12,671" - } - ], - "time_consumption": 5.626678466796875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638832.6712835, - "msecs": 671.0, - "relativeCreated": 72934.422442, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 4", - "asctime": "2025-08-19 23:27:12,671", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638832.872374, - "msecs": 872.0, - "relativeCreated": 73135.513056, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:27:12,872", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638832.6714394, - "msecs": 671.0, - "relativeCreated": 72934.578393, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:12,671" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.6725335, - "msecs": 672.0, - "relativeCreated": 72935.672566, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:12,672" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.6738696, - "msecs": 673.0, - "relativeCreated": 72937.008447, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:27:12,673" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638832.8721528, - "msecs": 872.0, - "relativeCreated": 73135.291798, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 4 ()", - "asctime": "2025-08-19 23:27:12,872" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638832.8723183, - "msecs": 872.0, - "relativeCreated": 73135.457257, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 4 ()", - "asctime": "2025-08-19 23:27:12,872" - } - ], - "time_consumption": 5.5789947509765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638832.8724873, - "msecs": 872.0, - "relativeCreated": 73135.626421, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 6", - "asctime": "2025-08-19 23:27:12,872", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638833.0736828, - "msecs": 73.0, - "relativeCreated": 73336.82172, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:27:13,073", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638832.8726482, - "msecs": 872.0, - "relativeCreated": 73135.787234, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:12,872" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.8737662, - "msecs": 873.0, - "relativeCreated": 73136.905235, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:12,873" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638832.8750699, - "msecs": 875.0, - "relativeCreated": 73138.20908, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:27:12,875" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638833.0734596, - "msecs": 73.0, - "relativeCreated": 73336.598721, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 6 ()", - "asctime": "2025-08-19 23:27:13,073" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638833.073601, - "msecs": 73.0, - "relativeCreated": 73336.740051, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 6 ()", - "asctime": "2025-08-19 23:27:13,073" - } - ], - "time_consumption": 8.177757263183594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638833.0737958, - "msecs": 73.0, - "relativeCreated": 73336.934733, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 8", - "asctime": "2025-08-19 23:27:13,073", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638833.2748508, - "msecs": 274.0, - "relativeCreated": 73537.989934, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:27:13,274", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.0739908, - "msecs": 73.0, - "relativeCreated": 73337.129835, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:13,073" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.0751233, - "msecs": 75.0, - "relativeCreated": 73338.26215, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:13,075" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.0766613, - "msecs": 76.0, - "relativeCreated": 73339.800248, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:27:13,076" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638833.274654, - "msecs": 274.0, - "relativeCreated": 73537.792895, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 8 ()", - "asctime": "2025-08-19 23:27:13,274" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638833.2747958, - "msecs": 274.0, - "relativeCreated": 73537.934756, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 8 ()", - "asctime": "2025-08-19 23:27:13,274" - } - ], - "time_consumption": 5.507469177246094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638833.2750032, - "msecs": 275.0, - "relativeCreated": 73538.142045, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/main_light to 10", - "asctime": "2025-08-19 23:27:13,275", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638833.4761446, - "msecs": 476.0, - "relativeCreated": 73739.283601, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:27:13,476", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.275193, - "msecs": 275.0, - "relativeCreated": 73538.332199, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:13,275" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.2762716, - "msecs": 276.0, - "relativeCreated": 73539.410511, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:13,276" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.2775972, - "msecs": 277.0, - "relativeCreated": 73540.736185, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:13,277" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638833.4759467, - "msecs": 475.0, - "relativeCreated": 73739.085859, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/main_light): 10 ()", - "asctime": "2025-08-19 23:27:13,475" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/main_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638833.4760911, - "msecs": 476.0, - "relativeCreated": 73739.230025, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/main_light): result = 10 ()", - "asctime": "2025-08-19 23:27:13,476" - } - ], - "time_consumption": 5.340576171875e-05 - } - ], - "time_consumption": 1.5095484256744385, - "time_start": "2025-08-19 23:27:11,966", - "time_finished": "2025-08-19 23:27:13,476" - }, - "REQ-0322": { - "name": "__tLogger__", - "msg": "REQ-0322", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638833.4764037, - "msecs": 476.0, - "relativeCreated": 73739.542726, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0322", - "asctime": "2025-08-19 23:27:13,476", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638833.5769572, - "msecs": 576.0, - "relativeCreated": 73840.096249, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:13,576", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", + "zigbee_ffe/ffe/livingroom/main_light", "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", @@ -97363,23 +7955,23 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638833.4766076, - "msecs": 476.0, - "relativeCreated": 73739.746519, - "thread": 131449228267776, + "created": 1755888840.2428913, + "msecs": 242.0, + "relativeCreated": 2117.700414, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:13,476" + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,242" }, { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" ], "levelname": "DEBUG", "levelno": 10, @@ -97390,4280 +7982,593 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638833.4775167, - "msecs": 477.0, - "relativeCreated": 73740.655618, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:13,477" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.4792771, - "msecs": 479.0, - "relativeCreated": 73742.416126, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:13,479" - } - ], - "time_consumption": 0.09768009185791016 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638833.6778483, - "msecs": 677.0, - "relativeCreated": 73940.987383, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:27:13,677", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.577191, - "msecs": 577.0, - "relativeCreated": 73840.330159, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:13,577" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.5774512, - "msecs": 577.0, - "relativeCreated": 73840.590168, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:13,577" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.5791402, - "msecs": 579.0, - "relativeCreated": 73842.279205, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:13,579" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.5794683, - "msecs": 579.0, - "relativeCreated": 73842.607421, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:13,579" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.6206, - "msecs": 620.0, - "relativeCreated": 73883.739117, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:13,620" - } - ], - "time_consumption": 0.05724835395812988 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638833.7785609, - "msecs": 778.0, - "relativeCreated": 74041.69968, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:27:13,778", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638833.7783585, - "msecs": 778.0, - "relativeCreated": 74041.497619, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:27:13,778" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638833.7785108, - "msecs": 778.0, - "relativeCreated": 74041.649861, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:27:13,778" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638833.7786634, - "msecs": 778.0, - "relativeCreated": 74041.802384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 0", - "asctime": "2025-08-19 23:27:13,778", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638833.9796562, - "msecs": 979.0, - "relativeCreated": 74242.795203, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:13,979", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.7787647, - "msecs": 778.0, - "relativeCreated": 74041.903754, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:27:13,778" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"brightness\": 1}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.7810526, - "msecs": 781.0, - "relativeCreated": 74044.191679, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:27:13,781" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.7812676, - "msecs": 781.0, - "relativeCreated": 74044.406665, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:13,781" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.7818272, - "msecs": 781.0, - "relativeCreated": 74044.966235, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:13,781" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.822527, - "msecs": 822.0, - "relativeCreated": 74085.66608, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:27:13,822" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638833.9794624, - "msecs": 979.0, - "relativeCreated": 74242.601344, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 0 ()", - "asctime": "2025-08-19 23:27:13,979" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638833.9796035, - "msecs": 979.0, - "relativeCreated": 74242.742485, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 0 ()", - "asctime": "2025-08-19 23:27:13,979" - } - ], - "time_consumption": 5.269050598144531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638833.9797673, - "msecs": 979.0, - "relativeCreated": 74242.9064, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 20", - "asctime": "2025-08-19 23:27:13,979", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638834.1809225, - "msecs": 180.0, - "relativeCreated": 74444.061508, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:27:14,180", - "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", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.9799337, - "msecs": 979.0, - "relativeCreated": 74243.072651, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:27:13,979" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"brightness\": 52}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.9822726, - "msecs": 982.0, - "relativeCreated": 74245.411527, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:27:13,982" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638833.982498, - "msecs": 982.0, - "relativeCreated": 74245.63698, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:13,982" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638833.983194, - "msecs": 983.0, - "relativeCreated": 74246.333116, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:13,983" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.0251806, - "msecs": 25.0, - "relativeCreated": 74288.319556, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:27:14,025" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638834.1806939, - "msecs": 180.0, - "relativeCreated": 74443.832762, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 20 ()", - "asctime": "2025-08-19 23:27:14,180" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638834.1808379, - "msecs": 180.0, - "relativeCreated": 74443.977016, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 20 ()", - "asctime": "2025-08-19 23:27:14,180" - } - ], - "time_consumption": 8.463859558105469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638834.1810658, - "msecs": 181.0, - "relativeCreated": 74444.204769, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 40", - "asctime": "2025-08-19 23:27:14,181", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638834.3819861, - "msecs": 381.0, - "relativeCreated": 74645.125101, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:27:14,381", - "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", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.181178, - "msecs": 181.0, - "relativeCreated": 74444.317133, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:27:14,181" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"brightness\": 102}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.1836178, - "msecs": 183.0, - "relativeCreated": 74446.756736, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:27:14,183" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.1838822, - "msecs": 183.0, - "relativeCreated": 74447.021261, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:14,183" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.1847568, - "msecs": 184.0, - "relativeCreated": 74447.895692, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:14,184" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.2260625, - "msecs": 226.0, - "relativeCreated": 74489.201591, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:27:14,226" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638834.3817925, - "msecs": 381.0, - "relativeCreated": 74644.931434, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 40 ()", - "asctime": "2025-08-19 23:27:14,381" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638834.3819368, - "msecs": 381.0, - "relativeCreated": 74645.07588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 40 ()", - "asctime": "2025-08-19 23:27:14,381" - } - ], - "time_consumption": 4.935264587402344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638834.3820927, - "msecs": 382.0, - "relativeCreated": 74645.231726, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 60", - "asctime": "2025-08-19 23:27:14,382", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638834.5829074, - "msecs": 582.0, - "relativeCreated": 74846.046319, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:27:14,582", - "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", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.3821964, - "msecs": 382.0, - "relativeCreated": 74645.335604, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:27:14,382" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"brightness\": 153}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.3845768, - "msecs": 384.0, - "relativeCreated": 74647.71588, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:27:14,384" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.3848205, - "msecs": 384.0, - "relativeCreated": 74647.959537, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:14,384" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.3853068, - "msecs": 385.0, - "relativeCreated": 74648.445997, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:14,385" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.4278076, - "msecs": 427.0, - "relativeCreated": 74690.946563, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:27:14,427" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638834.5827165, - "msecs": 582.0, - "relativeCreated": 74845.855482, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 60 ()", - "asctime": "2025-08-19 23:27:14,582" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638834.5828416, - "msecs": 582.0, - "relativeCreated": 74845.980536, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 60 ()", - "asctime": "2025-08-19 23:27:14,582" - } - ], - "time_consumption": 6.580352783203125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638834.58303, - "msecs": 583.0, - "relativeCreated": 74846.168947, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 80", - "asctime": "2025-08-19 23:27:14,583", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638834.784126, - "msecs": 784.0, - "relativeCreated": 75047.264906, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:27:14,784", - "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", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.5831332, - "msecs": 583.0, - "relativeCreated": 74846.272104, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:27:14,583" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"brightness\": 203}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.5853736, - "msecs": 585.0, - "relativeCreated": 74848.512828, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:27:14,585" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.5856366, - "msecs": 585.0, - "relativeCreated": 74848.775539, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:14,585" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.5861986, - "msecs": 586.0, - "relativeCreated": 74849.337637, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:14,586" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.6280527, - "msecs": 628.0, - "relativeCreated": 74891.191828, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:27:14,628" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638834.783862, - "msecs": 783.0, - "relativeCreated": 75047.001096, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 80 ()", - "asctime": "2025-08-19 23:27:14,783" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638834.7840707, - "msecs": 784.0, - "relativeCreated": 75047.209596, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 80 ()", - "asctime": "2025-08-19 23:27:14,784" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638834.784241, - "msecs": 784.0, - "relativeCreated": 75047.37999, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 100", - "asctime": "2025-08-19 23:27:14,784", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638834.9851735, - "msecs": 985.0, - "relativeCreated": 75248.312615, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:27:14,985", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.7843585, - "msecs": 784.0, - "relativeCreated": 75047.49729, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:14,784" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"brightness\": 254}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.7867544, - "msecs": 786.0, - "relativeCreated": 75049.893384, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:14,786" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638834.7870224, - "msecs": 787.0, - "relativeCreated": 75050.161222, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:14,787" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.7877538, - "msecs": 787.0, - "relativeCreated": 75050.892706, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:14,787" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638834.828565, - "msecs": 828.0, - "relativeCreated": 75091.703885, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:14,828" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638834.984999, - "msecs": 984.0, - "relativeCreated": 75248.138035, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 100 ()", - "asctime": "2025-08-19 23:27:14,984" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638834.985128, - "msecs": 985.0, - "relativeCreated": 75248.266837, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 100 ()", - "asctime": "2025-08-19 23:27:14,985" - } - ], - "time_consumption": 4.553794860839844e-05 - } - ], - "time_consumption": 1.5087697505950928, - "time_start": "2025-08-19 23:27:13,476", - "time_finished": "2025-08-19 23:27:14,985" - }, - "REQ-0323": { - "name": "__tLogger__", - "msg": "REQ-0323", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638834.9854016, - "msecs": 985.0, - "relativeCreated": 75248.540688, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0323", - "asctime": "2025-08-19 23:27:14,985", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638835.0856535, - "msecs": 85.0, - "relativeCreated": 75348.792439, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:15,085", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638835.18635, - "msecs": 186.0, - "relativeCreated": 75449.489074, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:27:15,186", - "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", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638835.0859737, - "msecs": 85.0, - "relativeCreated": 75349.112828, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:15,085" - } - ], - "time_consumption": 0.10037636756896973 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(100, 100)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638835.287187, - "msecs": 287.0, - "relativeCreated": 75550.326125, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:27:15,287", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638835.2869265, - "msecs": 286.0, - "relativeCreated": 75550.065478, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:27:15,286" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(100, 100)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638835.2871296, - "msecs": 287.0, - "relativeCreated": 75550.268647, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:27:15,287" - } - ], - "time_consumption": 5.745887756347656e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638835.2872958, - "msecs": 287.0, - "relativeCreated": 75550.434692, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 0", - "asctime": "2025-08-19 23:27:15,287", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638835.4884868, - "msecs": 488.0, - "relativeCreated": 75751.625737, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:15,488", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638835.287462, - "msecs": 287.0, - "relativeCreated": 75550.600796, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:15,287" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.288475, - "msecs": 288.0, - "relativeCreated": 75551.614088, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:15,288" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.2900004, - "msecs": 290.0, - "relativeCreated": 75553.139369, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:27:15,290" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638835.4882822, - "msecs": 488.0, - "relativeCreated": 75751.421103, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 0 ()", - "asctime": "2025-08-19 23:27:15,488" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638835.488428, - "msecs": 488.0, - "relativeCreated": 75751.567002, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 0 ()", - "asctime": "2025-08-19 23:27:15,488" - } - ], - "time_consumption": 5.8650970458984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "20" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638835.4886003, - "msecs": 488.0, - "relativeCreated": 75751.739202, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 20", - "asctime": "2025-08-19 23:27:15,488", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638835.6894882, - "msecs": 689.0, - "relativeCreated": 75952.627185, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:27:15,689", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638835.488783, - "msecs": 488.0, - "relativeCreated": 75751.921781, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:15,488" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.4900038, - "msecs": 490.0, - "relativeCreated": 75753.142829, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:15,490" - }, - { - "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'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.491639, - "msecs": 491.0, - "relativeCreated": 75754.777868, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:27:15,491" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638835.6892922, - "msecs": 689.0, - "relativeCreated": 75952.431173, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 20 ()", - "asctime": "2025-08-19 23:27:15,689" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "20", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638835.6894379, - "msecs": 689.0, - "relativeCreated": 75952.576843, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 20 ()", - "asctime": "2025-08-19 23:27:15,689" - } - ], - "time_consumption": 5.030632019042969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "40" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638835.6895952, - "msecs": 689.0, - "relativeCreated": 75952.734063, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 40", - "asctime": "2025-08-19 23:27:15,689", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638835.8907988, - "msecs": 890.0, - "relativeCreated": 76153.93773, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:27:15,890", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638835.6897583, - "msecs": 689.0, - "relativeCreated": 75952.897221, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:15,689" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.6907651, - "msecs": 690.0, - "relativeCreated": 75953.90396, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:15,690" - }, - { - "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'40'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.6920104, - "msecs": 692.0, - "relativeCreated": 75955.149562, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:27:15,692" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638835.8905857, - "msecs": 890.0, - "relativeCreated": 76153.724714, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 40 ()", - "asctime": "2025-08-19 23:27:15,890" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "40", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638835.8907406, - "msecs": 890.0, - "relativeCreated": 76153.879698, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 40 ()", - "asctime": "2025-08-19 23:27:15,890" - } - ], - "time_consumption": 5.817413330078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "60" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638835.890981, - "msecs": 890.0, - "relativeCreated": 76154.119943, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 60", - "asctime": "2025-08-19 23:27:15,890", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638836.0922, - "msecs": 92.0, - "relativeCreated": 76355.339016, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:27:16,092", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638835.8911695, - "msecs": 891.0, - "relativeCreated": 76154.308504, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:15,891" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.8922083, - "msecs": 892.0, - "relativeCreated": 76155.347352, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:15,892" - }, - { - "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'60'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638835.8936589, - "msecs": 893.0, - "relativeCreated": 76156.797868, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:27:15,893" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638836.0919995, - "msecs": 91.0, - "relativeCreated": 76355.138381, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 60 ()", - "asctime": "2025-08-19 23:27:16,091" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "60", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638836.0921462, - "msecs": 92.0, - "relativeCreated": 76355.285259, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 60 ()", - "asctime": "2025-08-19 23:27:16,092" - } - ], - "time_consumption": 5.3882598876953125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "80" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638836.0923114, - "msecs": 92.0, - "relativeCreated": 76355.450272, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 80", - "asctime": "2025-08-19 23:27:16,092", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638836.2933526, - "msecs": 293.0, - "relativeCreated": 76556.491718, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:27:16,293", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638836.0924706, - "msecs": 92.0, - "relativeCreated": 76355.609646, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:16,092" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.0934954, - "msecs": 93.0, - "relativeCreated": 76356.634183, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:16,093" - }, - { - "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'80'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.0948768, - "msecs": 94.0, - "relativeCreated": 76358.015713, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:27:16,094" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638836.2931316, - "msecs": 293.0, - "relativeCreated": 76556.270631, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 80 ()", - "asctime": "2025-08-19 23:27:16,293" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "80", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638836.293276, - "msecs": 293.0, - "relativeCreated": 76556.415107, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 80 ()", - "asctime": "2025-08-19 23:27:16,293" - } - ], - "time_consumption": 7.653236389160156e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "100" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638836.2934668, - "msecs": 293.0, - "relativeCreated": 76556.605811, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 100", - "asctime": "2025-08-19 23:27:16,293", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638836.494552, - "msecs": 494.0, - "relativeCreated": 76757.690694, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:27:16,494", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638836.2936332, - "msecs": 293.0, - "relativeCreated": 76556.77236, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:16,293" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.2946672, - "msecs": 294.0, - "relativeCreated": 76557.806363, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:16,294" - }, - { - "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'100'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.2961102, - "msecs": 296.0, - "relativeCreated": 76559.249104, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:16,296" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638836.494357, - "msecs": 494.0, - "relativeCreated": 76757.49609, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 100 ()", - "asctime": "2025-08-19 23:27:16,494" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "100", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638836.4944975, - "msecs": 494.0, - "relativeCreated": 76757.636567, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 100 ()", - "asctime": "2025-08-19 23:27:16,494" - } - ], - "time_consumption": 5.435943603515625e-05 - } - ], - "time_consumption": 1.5091502666473389, - "time_start": "2025-08-19 23:27:14,985", - "time_finished": "2025-08-19 23:27:16,494" - }, - "REQ-0324": { - "name": "__tLogger__", - "msg": "REQ-0324", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638836.4948204, - "msecs": 494.0, - "relativeCreated": 76757.959474, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0324", - "asctime": "2025-08-19 23:27:16,494", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638836.5951142, - "msecs": 595.0, - "relativeCreated": 76858.253246, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:16,595", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638836.6959808, - "msecs": 695.0, - "relativeCreated": 76959.119883, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:27:16,695", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638836.5953984, - "msecs": 595.0, - "relativeCreated": 76858.53729, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:16,595" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638836.595679, - "msecs": 595.0, - "relativeCreated": 76858.817874, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:16,595" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.5975692, - "msecs": 597.0, - "relativeCreated": 76860.708331, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:16,597" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.5978823, - "msecs": 597.0, - "relativeCreated": 76861.021473, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:16,597" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.6395614, - "msecs": 639.0, - "relativeCreated": 76902.700427, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:16,639" - } - ], - "time_consumption": 0.05641937255859375 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638836.796524, - "msecs": 796.0, - "relativeCreated": 77059.663079, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:27:16,796", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638836.796318, - "msecs": 796.0, - "relativeCreated": 77059.456916, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:27:16,796" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638836.796473, - "msecs": 796.0, - "relativeCreated": 77059.612081, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:27:16,796" - } - ], - "time_consumption": 5.1021575927734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638836.7966278, - "msecs": 796.0, - "relativeCreated": 77059.766729, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 0", - "asctime": "2025-08-19 23:27:16,796", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638836.997607, - "msecs": 997.0, - "relativeCreated": 77260.745961, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:16,997", - "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", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638836.7967339, - "msecs": 796.0, - "relativeCreated": 77059.872838, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 0", - "asctime": "2025-08-19 23:27:16,796" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 250}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.7988439, - "msecs": 798.0, - "relativeCreated": 77061.98281, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:27:16,798" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638836.7990837, - "msecs": 799.0, - "relativeCreated": 77062.222848, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:16,799" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.7996354, - "msecs": 799.0, - "relativeCreated": 77062.774563, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:16,799" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638836.8411407, - "msecs": 841.0, - "relativeCreated": 77104.279731, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:27:16,841" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638836.9973779, - "msecs": 997.0, - "relativeCreated": 77260.516674, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 0 ()", - "asctime": "2025-08-19 23:27:16,997" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638836.9975488, - "msecs": 997.0, - "relativeCreated": 77260.68787, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 0 ()", - "asctime": "2025-08-19 23:27:16,997" - } - ], - "time_consumption": 5.817413330078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638836.997722, - "msecs": 997.0, - "relativeCreated": 77260.860737, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 2", - "asctime": "2025-08-19 23:27:16,997", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638837.1986673, - "msecs": 198.0, - "relativeCreated": 77461.806376, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:27:17,198", - "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", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638836.9978447, - "msecs": 997.0, - "relativeCreated": 77260.983802, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 2", - "asctime": "2025-08-19 23:27:16,997" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 291}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.0000603, - "msecs": 0.0, - "relativeCreated": 77263.199535, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:27:17,000" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.0003014, - "msecs": 0.0, - "relativeCreated": 77263.440236, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:17,000" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.0009754, - "msecs": 0.0, - "relativeCreated": 77264.114444, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:17,000" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.0422037, - "msecs": 42.0, - "relativeCreated": 77305.342677, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:27:17,042" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638837.19851, - "msecs": 198.0, - "relativeCreated": 77461.648825, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 2 ()", - "asctime": "2025-08-19 23:27:17,198" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638837.1986222, - "msecs": 198.0, - "relativeCreated": 77461.761306, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 2 ()", - "asctime": "2025-08-19 23:27:17,198" - } - ], - "time_consumption": 4.506111145019531e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638837.1987584, - "msecs": 198.0, - "relativeCreated": 77461.897506, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 4", - "asctime": "2025-08-19 23:27:17,198", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638837.399861, - "msecs": 399.0, - "relativeCreated": 77662.99993, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:27:17,399", - "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", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.1988666, - "msecs": 198.0, - "relativeCreated": 77462.005642, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 4", - "asctime": "2025-08-19 23:27:17,198" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 332}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.2008839, - "msecs": 200.0, - "relativeCreated": 77464.022974, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:27:17,200" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.2011633, - "msecs": 201.0, - "relativeCreated": 77464.302238, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:17,201" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.2017195, - "msecs": 201.0, - "relativeCreated": 77464.858631, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:17,201" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.243228, + "created": 1755888840.2436948, "msecs": 243.0, - "relativeCreated": 77506.366792, - "thread": 131449202394816, + "relativeCreated": 2118.504084, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:27:17,243" + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:00,243" }, { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "4", - "" + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638837.3996608, - "msecs": 399.0, - "relativeCreated": 77662.79991, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2439978, + "msecs": 243.0, + "relativeCreated": 2118.806846, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 4 ()", - "asctime": "2025-08-19 23:27:17,399" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,243" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "4", - "" + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"state\": \"on\"}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_text": null, "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638837.3998075, - "msecs": 399.0, - "relativeCreated": 77662.946461, - "thread": 131449228267776, - "threadName": "MainThread", + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.284213, + "msecs": 284.0, + "relativeCreated": 2159.022281, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 4 ()", - "asctime": "2025-08-19 23:27:17,399" + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,284" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.284516, + "msecs": 284.0, + "relativeCreated": 2159.325363, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,284" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2848654, + "msecs": 284.0, + "relativeCreated": 2159.674597, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,284" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.2850204, + "msecs": 285.0, + "relativeCreated": 2159.829636, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,285" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2853296, + "msecs": 285.0, + "relativeCreated": 2160.138782, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,285" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.2855356, + "msecs": 285.0, + "relativeCreated": 2160.344777, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,285" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2858558, + "msecs": 285.0, + "relativeCreated": 2160.665004, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,285" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.2859936, + "msecs": 285.0, + "relativeCreated": 2160.802678, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,285" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2862473, + "msecs": 286.0, + "relativeCreated": 2161.056308, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,286" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.2863884, + "msecs": 286.0, + "relativeCreated": 2161.19772, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,286" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2866504, + "msecs": 286.0, + "relativeCreated": 2161.459605, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,286" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.2867992, + "msecs": 286.0, + "relativeCreated": 2161.608243, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,286" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.287052, + "msecs": 287.0, + "relativeCreated": 2161.861305, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:00,287" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.287327, + "msecs": 287.0, + "relativeCreated": 2162.136274, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,287" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2875218, + "msecs": 287.0, + "relativeCreated": 2162.331119, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,287" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.287713, + "msecs": 287.0, + "relativeCreated": 2162.522256, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,287" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2878919, + "msecs": 287.0, + "relativeCreated": 2162.70117, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,287" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2880793, + "msecs": 288.0, + "relativeCreated": 2162.888587, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,288" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.2882793, + "msecs": 288.0, + "relativeCreated": 2163.08845, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,288" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3282063, + "msecs": 328.0, + "relativeCreated": 2203.015488, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:54:00,328" } ], - "time_consumption": 5.364418029785156e-05 + "time_consumption": 0.01504206657409668 }, { "name": "__tLogger__", - "msg": "Setting state of %s to %s", + "msg": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", "args": [ - "videv/gfw/dirk/desk_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638837.4000082, - "msecs": 400.0, - "relativeCreated": 77663.147276, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 6", - "asctime": "2025-08-19 23:27:17,400", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" + "True", + "" ], "levelname": "INFO", "levelno": 20, @@ -101674,77 +8579,110 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638837.6008847, - "msecs": 600.0, - "relativeCreated": 77864.023823, - "thread": 131449228267776, + "created": 1755888840.343639, + "msecs": 343.0, + "relativeCreated": 2218.448118, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:27:17,600", + "message": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:00,343", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", "args": [ - "videv/gfw/dirk/desk_light/color_temp/set", - "6" + "Value for Light.state (ffe.livingroom.floor_light)", + "True", + "" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", "exc_text": null, "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.4001243, - "msecs": 400.0, - "relativeCreated": 77663.263365, - "thread": 131449228267776, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888840.343525, + "msecs": 343.0, + "relativeCreated": 2218.334186, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 6", - "asctime": "2025-08-19 23:27:17,400" + "message": "Result (Value for Light.state (ffe.livingroom.floor_light)): True ()", + "asctime": "2025-08-22 20:54:00,343" }, { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 372}'" + "Value for Light.state (ffe.livingroom.floor_light)", + "=", + "True", + "" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", "exc_text": null, "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.4024622, - "msecs": 402.0, - "relativeCreated": 77665.601252, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888840.3435774, + "msecs": 343.0, + "relativeCreated": 2218.386656, + "thread": 133814251192576, + "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:27:17,402" - }, + "message": "Expectation (Value for Light.state (ffe.livingroom.floor_light)): result = True ()", + "asctime": "2025-08-22 20:54:00,343" + } + ], + "time_consumption": 6.151199340820312e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.livingroom.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888840.4442391, + "msecs": 444.0, + "relativeCreated": 2319.048296, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.livingroom.main_light) to False", + "asctime": "2025-08-22 20:54:00,444", + "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + "shellies/ffe/livingroom/main_light/relay/0", + "off" ], "levelname": "DEBUG", "levelno": 10, @@ -101755,23 +8693,23 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638837.4026775, - "msecs": 402.0, - "relativeCreated": 77665.816507, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", + "created": 1755888840.3437755, + "msecs": 343.0, + "relativeCreated": 2218.584713, + "thread": 133814251192576, + "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:17,402" + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:00,343" }, { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" ], "levelname": "DEBUG", "levelno": 10, @@ -101782,23 +8720,23 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638837.4033742, - "msecs": 403.0, - "relativeCreated": 77666.512972, - "thread": 131449202394816, + "created": 1755888840.3447537, + "msecs": 344.0, + "relativeCreated": 2219.562792, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:17,403" + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:00,344" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'6'" + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -101809,53 +8747,596 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638837.4445868, + "created": 1755888840.3860652, + "msecs": 386.0, + "relativeCreated": 2260.874296, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,386" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.3863227, + "msecs": 386.0, + "relativeCreated": 2261.131958, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,386" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.386633, + "msecs": 386.0, + "relativeCreated": 2261.442106, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,386" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.38679, + "msecs": 386.0, + "relativeCreated": 2261.599361, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,386" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3870552, + "msecs": 387.0, + "relativeCreated": 2261.864394, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.3871837, + "msecs": 387.0, + "relativeCreated": 2261.992961, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3873887, + "msecs": 387.0, + "relativeCreated": 2262.197817, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.3875082, + "msecs": 387.0, + "relativeCreated": 2262.317455, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3877535, + "msecs": 387.0, + "relativeCreated": 2262.562703, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.3878853, + "msecs": 387.0, + "relativeCreated": 2262.694576, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3881185, + "msecs": 388.0, + "relativeCreated": 2262.92772, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,388" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.3882463, + "msecs": 388.0, + "relativeCreated": 2263.055576, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:00,388" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.388468, + "msecs": 388.0, + "relativeCreated": 2263.277085, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:00,388" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3887048, + "msecs": 388.0, + "relativeCreated": 2263.513902, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,388" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.388904, + "msecs": 388.0, + "relativeCreated": 2263.713411, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,388" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3890808, + "msecs": 389.0, + "relativeCreated": 2263.889994, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,389" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3892698, + "msecs": 389.0, + "relativeCreated": 2264.079111, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,389" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.3894446, + "msecs": 389.0, + "relativeCreated": 2264.253788, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,389" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.389625, + "msecs": 389.0, + "relativeCreated": 2264.434284, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:00,389" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.429112, + "msecs": 429.0, + "relativeCreated": 2303.921193, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:54:00,429" + } + ], + "time_consumption": 0.015127182006835938 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888840.444612, + "msecs": 444.0, + "relativeCreated": 2319.421337, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (ffe.livingroom.floor_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:00,444", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (ffe.livingroom.floor_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888840.4445248, "msecs": 444.0, - "relativeCreated": 77707.72574, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:27:17,444" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638837.6006966, - "msecs": 600.0, - "relativeCreated": 77863.835598, - "thread": 131449228267776, + "relativeCreated": 2319.334056, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 6 ()", - "asctime": "2025-08-19 23:27:17,600" + "message": "Result (Value for Light.state (ffe.livingroom.floor_light)): False ()", + "asctime": "2025-08-22 20:54:00,444" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", + "Value for Light.state (ffe.livingroom.floor_light)", "=", - "6", - "" + "False", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -101866,530 +9347,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638837.6008327, - "msecs": 600.0, - "relativeCreated": 77863.971699, - "thread": 131449228267776, + "created": 1755888840.4445753, + "msecs": 444.0, + "relativeCreated": 2319.384577, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 6 ()", - "asctime": "2025-08-19 23:27:17,600" + "message": "Expectation (Value for Light.state (ffe.livingroom.floor_light)): result = False ()", + "asctime": "2025-08-22 20:54:00,444" } ], - "time_consumption": 5.1975250244140625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638837.6010263, - "msecs": 601.0, - "relativeCreated": 77864.165346, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 8", - "asctime": "2025-08-19 23:27:17,601", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638837.801988, - "msecs": 801.0, - "relativeCreated": 78065.126813, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:27:17,801", - "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", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.6011298, - "msecs": 601.0, - "relativeCreated": 77864.268816, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 8", - "asctime": "2025-08-19 23:27:17,601" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 413}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.6032262, - "msecs": 603.0, - "relativeCreated": 77866.36503, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:27:17,603" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.603439, - "msecs": 603.0, - "relativeCreated": 77866.578143, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:17,603" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.6041057, - "msecs": 604.0, - "relativeCreated": 77867.244667, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:17,604" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.6456974, - "msecs": 645.0, - "relativeCreated": 77908.836353, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:27:17,645" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638837.801754, - "msecs": 801.0, - "relativeCreated": 78064.892999, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 8 ()", - "asctime": "2025-08-19 23:27:17,801" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638837.8019326, - "msecs": 801.0, - "relativeCreated": 78065.071468, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 8 ()", - "asctime": "2025-08-19 23:27:17,801" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/dirk/desk_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638837.802098, - "msecs": 802.0, - "relativeCreated": 78065.23696, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/dirk/desk_light to 10", - "asctime": "2025-08-19 23:27:17,802", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638838.00322, - "msecs": 3.0, - "relativeCreated": 78266.358999, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/dirk/desk_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:27:18,003", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.8022335, - "msecs": 802.0, - "relativeCreated": 78065.372473, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:17,802" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.8047378, - "msecs": 804.0, - "relativeCreated": 78067.876686, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:17,804" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638837.805003, - "msecs": 805.0, - "relativeCreated": 78068.141977, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:17,805" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.8056052, - "msecs": 805.0, - "relativeCreated": 78068.744163, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:17,805" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638837.8471937, - "msecs": 847.0, - "relativeCreated": 78110.332689, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:17,847" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638838.003, - "msecs": 2.0, - "relativeCreated": 78266.138966, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/dirk/desk_light): 10 ()", - "asctime": "2025-08-19 23:27:18,002" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for zigbee_gfw/gfw/dirk/desk_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638838.0031447, - "msecs": 3.0, - "relativeCreated": 78266.283829, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/dirk/desk_light): result = 10 ()", - "asctime": "2025-08-19 23:27:18,003" - } - ], - "time_consumption": 7.534027099609375e-05 + "time_consumption": 3.6716461181640625e-05 } ], - "time_consumption": 1.5083997249603271, - "time_start": "2025-08-19 23:27:16,494", - "time_finished": "2025-08-19 23:27:18,003" + "time_consumption": 0.30298876762390137, + "time_start": "2025-08-22 20:54:00,141", + "time_finished": "2025-08-22 20:54:00,444" }, - "REQ-0325": { + "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.state (ffe.livingroom.xmas-tree)": { "name": "__tLogger__", - "msg": "REQ-0325", + "msg": "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.state (ffe.livingroom.xmas-tree)", "args": null, "levelname": "INFO", "levelno": 20, @@ -102400,1397 +9379,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638838.0034783, - "msecs": 3.0, - "relativeCreated": 78266.61716, - "thread": 131449228267776, + "created": 1755888840.4448416, + "msecs": 444.0, + "relativeCreated": 2319.650937, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0325", - "asctime": "2025-08-19 23:27:18,003", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Switching on device", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 13, - "funcName": "device_follow", - "created": 1755638838.103694, - "msecs": 103.0, - "relativeCreated": 78366.833114, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:18,103", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638838.20439, - "msecs": 204.0, - "relativeCreated": 78467.529091, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:27:18,204", - "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", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638838.1040256, - "msecs": 104.0, - "relativeCreated": 78367.164581, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:18,104" - } - ], - "time_consumption": 0.10036444664001465 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(10, 10)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638838.3051853, - "msecs": 305.0, - "relativeCreated": 78568.324244, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:27:18,305", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638838.3049479, - "msecs": 304.0, - "relativeCreated": 78568.086887, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:27:18,304" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(10, 10)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638838.3051264, - "msecs": 305.0, - "relativeCreated": 78568.265377, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:27:18,305" - } - ], - "time_consumption": 5.888938903808594e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "0" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638838.3053024, - "msecs": 305.0, - "relativeCreated": 78568.441367, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 0", - "asctime": "2025-08-19 23:27:18,305", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638838.5063636, - "msecs": 506.0, - "relativeCreated": 78769.502651, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:18,506", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638838.3054898, - "msecs": 305.0, - "relativeCreated": 78568.6287, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:18,305" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.306631, - "msecs": 306.0, - "relativeCreated": 78569.77019, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:18,306" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.3080404, - "msecs": 308.0, - "relativeCreated": 78571.179409, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:27:18,308" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638838.506173, - "msecs": 506.0, - "relativeCreated": 78769.311956, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 0 ()", - "asctime": "2025-08-19 23:27:18,506" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638838.5063126, - "msecs": 506.0, - "relativeCreated": 78769.451809, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 0 ()", - "asctime": "2025-08-19 23:27:18,506" - } - ], - "time_consumption": 5.1021575927734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638838.5065026, - "msecs": 506.0, - "relativeCreated": 78769.641546, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 2", - "asctime": "2025-08-19 23:27:18,506", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638838.7075033, - "msecs": 707.0, - "relativeCreated": 78970.642403, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:27:18,707", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638838.506669, - "msecs": 506.0, - "relativeCreated": 78769.807971, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:18,506" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.507759, - "msecs": 507.0, - "relativeCreated": 78770.898054, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:18,507" - }, - { - "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'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.5089982, - "msecs": 508.0, - "relativeCreated": 78772.137168, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:27:18,508" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638838.7073061, - "msecs": 707.0, - "relativeCreated": 78970.445244, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 2 ()", - "asctime": "2025-08-19 23:27:18,707" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638838.7074535, - "msecs": 707.0, - "relativeCreated": 78970.592384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 2 ()", - "asctime": "2025-08-19 23:27:18,707" - } - ], - "time_consumption": 4.982948303222656e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "4" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638838.7076068, - "msecs": 707.0, - "relativeCreated": 78970.745678, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 4", - "asctime": "2025-08-19 23:27:18,707", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638838.9086187, - "msecs": 908.0, - "relativeCreated": 79171.757756, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:27:18,908", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638838.7077553, - "msecs": 707.0, - "relativeCreated": 78970.894249, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:18,707" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.7084582, - "msecs": 708.0, - "relativeCreated": 78971.597334, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:18,708" - }, - { - "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'4'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.7095368, - "msecs": 709.0, - "relativeCreated": 78972.67588, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:27:18,709" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638838.9083986, - "msecs": 908.0, - "relativeCreated": 79171.537673, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 4 ()", - "asctime": "2025-08-19 23:27:18,908" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "4", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638838.9085374, - "msecs": 908.0, - "relativeCreated": 79171.676326, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 4 ()", - "asctime": "2025-08-19 23:27:18,908" - } - ], - "time_consumption": 8.130073547363281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "6" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638838.9087298, - "msecs": 908.0, - "relativeCreated": 79171.868766, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 6", - "asctime": "2025-08-19 23:27:18,908", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638839.1099436, - "msecs": 109.0, - "relativeCreated": 79373.08267, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:27:19,109", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638838.9089131, - "msecs": 908.0, - "relativeCreated": 79172.052117, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:18,908" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.9099472, - "msecs": 909.0, - "relativeCreated": 79173.086069, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:18,909" - }, - { - "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'6'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638838.9111056, - "msecs": 911.0, - "relativeCreated": 79174.244632, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:27:18,911" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638839.1096892, - "msecs": 109.0, - "relativeCreated": 79372.828433, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 6 ()", - "asctime": "2025-08-19 23:27:19,109" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "6", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638839.1098309, - "msecs": 109.0, - "relativeCreated": 79372.969868, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 6 ()", - "asctime": "2025-08-19 23:27:19,109" - } - ], - "time_consumption": 0.00011277198791503906 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "8" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638839.1100593, - "msecs": 110.0, - "relativeCreated": 79373.198367, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 8", - "asctime": "2025-08-19 23:27:19,110", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638839.3111036, - "msecs": 311.0, - "relativeCreated": 79574.242404, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:27:19,311", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.1102214, - "msecs": 110.0, - "relativeCreated": 79373.360374, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:19,110" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.111334, - "msecs": 111.0, - "relativeCreated": 79374.473185, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:19,111" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.112676, - "msecs": 112.0, - "relativeCreated": 79375.81497, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:27:19,112" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638839.3108697, - "msecs": 310.0, - "relativeCreated": 79574.008777, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 8 ()", - "asctime": "2025-08-19 23:27:19,310" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638839.3110483, - "msecs": 311.0, - "relativeCreated": 79574.187286, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 8 ()", - "asctime": "2025-08-19 23:27:19,311" - } - ], - "time_consumption": 5.53131103515625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "10" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638839.3112144, - "msecs": 311.0, - "relativeCreated": 79574.353384, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/dirk/desk_light to 10", - "asctime": "2025-08-19 23:27:19,311", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/dirk/desk_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638839.5124233, - "msecs": 512.0, - "relativeCreated": 79775.562052, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/dirk/desk_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:27:19,512", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.311396, - "msecs": 311.0, - "relativeCreated": 79574.534865, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:19,311" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.312453, - "msecs": 312.0, - "relativeCreated": 79575.591999, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:19,312" - }, - { - "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'10'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.3139405, - "msecs": 313.0, - "relativeCreated": 79577.07945, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:19,313" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638839.5122123, - "msecs": 512.0, - "relativeCreated": 79775.351293, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/dirk/desk_light): 10 ()", - "asctime": "2025-08-19 23:27:19,512" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/dirk/desk_light", - "=", - "10", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638839.5123665, - "msecs": 512.0, - "relativeCreated": 79775.505648, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/dirk/desk_light): result = 10 ()", - "asctime": "2025-08-19 23:27:19,512" - } - ], - "time_consumption": 5.6743621826171875e-05 - } - ], - "time_consumption": 1.5089449882507324, - "time_start": "2025-08-19 23:27:18,003", - "time_finished": "2025-08-19 23:27:19,512" - }, - "REQ-0341": { - "name": "__tLogger__", - "msg": "REQ-0341", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638839.5127108, - "msecs": 512.0, - "relativeCreated": 79775.849812, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0341", - "asctime": "2025-08-19 23:27:19,512", + "message": "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.state (ffe.livingroom.xmas-tree)", + "asctime": "2025-08-22 20:54:00,444", "moduleLogger": [], "testcaseLogger": [ { @@ -103808,22 +9406,22 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638839.613515, - "msecs": 613.0, - "relativeCreated": 79876.65392, - "thread": 131449228267776, + "created": 1755888840.5453248, + "msecs": 545.0, + "relativeCreated": 2420.134046, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:19,613", + "asctime": "2025-08-22 20:54:00,545", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state.set", + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/marion/main_light/state/set", + "videv/ffe/livingroom/xmas_tree/state/set", "false" ], "levelname": "DEBUG", @@ -103835,3011 +9433,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638839.5129318, - "msecs": 512.0, - "relativeCreated": 79776.070924, - "thread": 131449228267776, + "created": 1755888840.444968, + "msecs": 444.0, + "relativeCreated": 2319.777276, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload false", - "asctime": "2025-08-19 23:27:19,512" - }, - { - "name": "smart_brain.devices.shellies.gfw.marion.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638839.5131676, - "msecs": 513.0, - "relativeCreated": 79776.306591, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:27:19,513" - } - ], - "time_consumption": 0.10034728050231934 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638839.7141469, - "msecs": 714.0, - "relativeCreated": 79977.285702, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:19,714", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638839.7139275, - "msecs": 713.0, - "relativeCreated": 79977.06634, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:19,713" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638839.7140968, - "msecs": 714.0, - "relativeCreated": 79977.235824, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:19,714" - } - ], - "time_consumption": 5.0067901611328125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/marion/main_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638839.7142534, - "msecs": 714.0, - "relativeCreated": 79977.39241, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/marion/main_light to True", - "asctime": "2025-08-19 23:27:19,714", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (gfw.marion) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638839.9151864, - "msecs": 915.0, - "relativeCreated": 80178.32546, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (gfw.marion) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:19,915", - "moduleLogger": [ - { - "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/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.7143657, - "msecs": 714.0, - "relativeCreated": 79977.504814, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload true", - "asctime": "2025-08-19 23:27:19,714" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.7166524, - "msecs": 716.0, - "relativeCreated": 79979.791278, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:27:19,716" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.7168329, - "msecs": 716.0, - "relativeCreated": 79979.971764, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:19,716" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.717477, - "msecs": 717.0, - "relativeCreated": 79980.616016, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:19,717" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.7591598, - "msecs": 759.0, - "relativeCreated": 80022.298828, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:27:19,759" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.759334, - "msecs": 759.0, - "relativeCreated": 80022.473112, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:19,759" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.760115, - "msecs": 760.0, - "relativeCreated": 80023.254041, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:19,760" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.760638, - "msecs": 760.0, - "relativeCreated": 80023.776927, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:19,760" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.801534, - "msecs": 801.0, - "relativeCreated": 80064.672997, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:19,801" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.802533, - "msecs": 802.0, - "relativeCreated": 80065.671814, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:27:19,802" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.8028653, - "msecs": 802.0, - "relativeCreated": 80066.004172, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:27:19,802" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.marion)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638839.9149916, - "msecs": 914.0, - "relativeCreated": 80178.130562, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (gfw.marion)): True ()", - "asctime": "2025-08-19 23:27:19,914" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.marion)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638839.915135, - "msecs": 915.0, - "relativeCreated": 80178.274016, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (gfw.marion)): result = True ()", - "asctime": "2025-08-19 23:27:19,915" - } - ], - "time_consumption": 5.14984130859375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/marion/main_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638839.915301, - "msecs": 915.0, - "relativeCreated": 80178.440041, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/marion/main_light to False", - "asctime": "2025-08-19 23:27:19,915", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (gfw.marion) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638840.1163163, - "msecs": 116.0, - "relativeCreated": 80379.455484, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (gfw.marion) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:20,116", - "moduleLogger": [ - { - "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/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.9154098, - "msecs": 915.0, - "relativeCreated": 80178.54898, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload false", - "asctime": "2025-08-19 23:27:19,915" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.9178708, - "msecs": 917.0, - "relativeCreated": 80181.009908, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:27:19,917" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.918086, - "msecs": 918.0, - "relativeCreated": 80181.225037, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:27:19,918" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.9187465, - "msecs": 918.0, - "relativeCreated": 80181.885356, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:27:19,918" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.960257, - "msecs": 960.0, - "relativeCreated": 80223.395949, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:27:19,960" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638839.9604666, - "msecs": 960.0, - "relativeCreated": 80223.605819, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:19,960" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.9607646, - "msecs": 960.0, - "relativeCreated": 80223.903659, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:19,960" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638839.9611666, - "msecs": 961.0, - "relativeCreated": 80224.305559, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:19,961" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.0024207, - "msecs": 2.0, - "relativeCreated": 80265.559712, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:20,002" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.marion)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638840.116074, - "msecs": 116.0, - "relativeCreated": 80379.212926, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Shelly Main Light (gfw.marion)): False ()", - "asctime": "2025-08-19 23:27:20,116" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Shelly Main Light (gfw.marion)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638840.1162279, - "msecs": 116.0, - "relativeCreated": 80379.366761, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Shelly Main Light (gfw.marion)): result = False ()", - "asctime": "2025-08-19 23:27:20,116" - } - ], - "time_consumption": 8.845329284667969e-05 - } - ], - "time_consumption": 0.6036055088043213, - "time_start": "2025-08-19 23:27:19,512", - "time_finished": "2025-08-19 23:27:20,116" - }, - "REQ-0342": { - "name": "__tLogger__", - "msg": "REQ-0342", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638840.1165926, - "msecs": 116.0, - "relativeCreated": 80379.731636, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0342", - "asctime": "2025-08-19 23:27:20,116", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638840.2171125, - "msecs": 217.0, - "relativeCreated": 80480.251556, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:20,217", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.relay.0.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/relay/0/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.116764, - "msecs": 116.0, - "relativeCreated": 80379.903061, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/marion/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:27:20,116" - } - ], - "time_consumption": 0.10034847259521484 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638840.3177557, - "msecs": 317.0, - "relativeCreated": 80580.894606, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:20,317", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638840.3175242, - "msecs": 317.0, - "relativeCreated": 80580.663236, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:20,317" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638840.3176997, - "msecs": 317.0, - "relativeCreated": 80580.838482, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:20,317" - } - ], - "time_consumption": 5.602836608886719e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (gfw.marion)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638840.317875, - "msecs": 317.0, - "relativeCreated": 80581.013898, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.marion) to True", - "asctime": "2025-08-19 23:27:20,317", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/marion/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638840.5190694, - "msecs": 519.0, - "relativeCreated": 80782.208508, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/marion/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:20,519", - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.3180225, - "msecs": 318.0, - "relativeCreated": 80581.16128, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:20,318" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.319076, - "msecs": 319.0, - "relativeCreated": 80582.215225, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:20,319" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.3205853, - "msecs": 320.0, - "relativeCreated": 80583.724113, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:27:20,320" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.3207912, - "msecs": 320.0, - "relativeCreated": 80583.930356, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:20,320" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.3211527, - "msecs": 321.0, - "relativeCreated": 80584.291753, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:20,321" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.3218105, - "msecs": 321.0, - "relativeCreated": 80584.949421, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:20,321" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.3634388, - "msecs": 363.0, - "relativeCreated": 80626.577846, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:20,363" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/marion/main_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638840.5187895, - "msecs": 518.0, - "relativeCreated": 80781.928665, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/marion/main_light): True ()", - "asctime": "2025-08-19 23:27:20,518" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/marion/main_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638840.5190067, - "msecs": 519.0, - "relativeCreated": 80782.145677, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/marion/main_light): result = True ()", - "asctime": "2025-08-19 23:27:20,519" - } - ], - "time_consumption": 6.270408630371094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly Main Light (gfw.marion)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638840.5191932, - "msecs": 519.0, - "relativeCreated": 80782.332183, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.marion) to False", - "asctime": "2025-08-19 23:27:20,519", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/marion/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638840.720267, - "msecs": 720.0, - "relativeCreated": 80983.40611, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/marion/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:20,720", - "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", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.5193095, - "msecs": 519.0, - "relativeCreated": 80782.44863, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:27:20,519" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.5205076, - "msecs": 520.0, - "relativeCreated": 80783.646566, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:27:20,520" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.5220208, - "msecs": 522.0, - "relativeCreated": 80785.159945, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:27:20,522" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.52227, - "msecs": 522.0, - "relativeCreated": 80785.408884, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:20,522" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.5226552, - "msecs": 522.0, - "relativeCreated": 80785.794291, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:20,522" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.5233912, - "msecs": 523.0, - "relativeCreated": 80786.530128, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:20,523" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.5653708, - "msecs": 565.0, - "relativeCreated": 80828.509794, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:20,565" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/marion/main_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638840.7200897, - "msecs": 720.0, - "relativeCreated": 80983.228651, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/marion/main_light): False ()", - "asctime": "2025-08-19 23:27:20,720" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/marion/main_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638840.7202199, - "msecs": 720.0, - "relativeCreated": 80983.358845, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/marion/main_light): result = False ()", - "asctime": "2025-08-19 23:27:20,720" - } - ], - "time_consumption": 4.7206878662109375e-05 - } - ], - "time_consumption": 0.6036744117736816, - "time_start": "2025-08-19 23:27:20,116", - "time_finished": "2025-08-19 23:27:20,720" - }, - "REQ-0343": { - "name": "__tLogger__", - "msg": "REQ-0343", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638840.7204943, - "msecs": 720.0, - "relativeCreated": 80983.633382, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0343", - "asctime": "2025-08-19 23:27:20,720", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638840.8210263, - "msecs": 821.0, - "relativeCreated": 81084.165297, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:20,821", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.720652, - "msecs": 720.0, - "relativeCreated": 80983.790913, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload false", - "asctime": "2025-08-19 23:27:20,720" - } - ], - "time_consumption": 0.10037422180175781 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638840.9216676, - "msecs": 921.0, - "relativeCreated": 81184.806592, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:20,921", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638840.9214451, - "msecs": 921.0, - "relativeCreated": 81184.584059, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:20,921" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638840.9216106, - "msecs": 921.0, - "relativeCreated": 81184.749437, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:20,921" - } - ], - "time_consumption": 5.698204040527344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/marion/window_light", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638840.9217916, - "msecs": 921.0, - "relativeCreated": 81184.930594, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/marion/window_light to True", - "asctime": "2025-08-19 23:27:20,921", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Windowlight (gfw.marion) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638841.1227639, - "msecs": 122.0, - "relativeCreated": 81385.902906, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Windowlight (gfw.marion) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:21,122", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state/set", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.92193, - "msecs": 921.0, - "relativeCreated": 81185.069106, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload true", - "asctime": "2025-08-19 23:27:20,921" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.9243195, - "msecs": 924.0, - "relativeCreated": 81187.458448, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:27:20,924" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638840.9246144, - "msecs": 924.0, - "relativeCreated": 81187.753481, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:20,924" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.9253993, - "msecs": 925.0, - "relativeCreated": 81188.538236, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:20,925" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638840.9662757, - "msecs": 966.0, - "relativeCreated": 81229.414699, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:20,966" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Windowlight (gfw.marion)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638841.122571, - "msecs": 122.0, - "relativeCreated": 81385.709956, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Windowlight (gfw.marion)): True ()", - "asctime": "2025-08-19 23:27:21,122" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Windowlight (gfw.marion)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638841.122711, - "msecs": 122.0, - "relativeCreated": 81385.850138, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Windowlight (gfw.marion)): result = True ()", - "asctime": "2025-08-19 23:27:21,122" - } - ], - "time_consumption": 5.2928924560546875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "videv/gfw/marion/window_light", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638841.1228843, - "msecs": 122.0, - "relativeCreated": 81386.023391, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of videv/gfw/marion/window_light to False", - "asctime": "2025-08-19 23:27:21,122", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Windowlight (gfw.marion) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638841.3240066, - "msecs": 324.0, - "relativeCreated": 81587.14558, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Windowlight (gfw.marion) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:21,324", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638841.1230156, - "msecs": 123.0, - "relativeCreated": 81386.154745, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload false", - "asctime": "2025-08-19 23:27:21,123" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638841.1252627, - "msecs": 125.0, - "relativeCreated": 81388.401835, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:27:21,125" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638841.1255145, - "msecs": 125.0, - "relativeCreated": 81388.653601, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:21,125" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638841.126277, - "msecs": 126.0, - "relativeCreated": 81389.415968, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:21,126" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638841.1673026, - "msecs": 167.0, - "relativeCreated": 81430.441703, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:21,167" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Tradfri Windowlight (gfw.marion)", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638841.3237667, - "msecs": 323.0, - "relativeCreated": 81586.905795, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for Tradfri Windowlight (gfw.marion)): False ()", - "asctime": "2025-08-19 23:27:21,323" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for Tradfri Windowlight (gfw.marion)", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638841.323951, - "msecs": 323.0, - "relativeCreated": 81587.090151, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for Tradfri Windowlight (gfw.marion)): result = False ()", - "asctime": "2025-08-19 23:27:21,323" - } - ], - "time_consumption": 5.555152893066406e-05 - } - ], - "time_consumption": 0.6035122871398926, - "time_start": "2025-08-19 23:27:20,720", - "time_finished": "2025-08-19 23:27:21,324" - }, - "REQ-0344": { - "name": "__tLogger__", - "msg": "REQ-0344", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638841.3242507, - "msecs": 324.0, - "relativeCreated": 81587.38973, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0344", - "asctime": "2025-08-19 23:27:21,324", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638841.424869, - "msecs": 424.0, - "relativeCreated": 81688.008164, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:21,424", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state/set", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638841.32441, - "msecs": 324.0, - "relativeCreated": 81587.548881, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload false", - "asctime": "2025-08-19 23:27:21,324" - } - ], - "time_consumption": 0.10045909881591797 - }, - { - "name": "__tLogger__", - "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", - "args": [ - "(False, False)", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638841.5253084, - "msecs": 525.0, - "relativeCreated": 81788.447427, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:21,525", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Start state (master, slave)", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638841.5252125, - "msecs": 525.0, - "relativeCreated": 81788.351401, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:21,525" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Start state (master, slave)", - "=", - "(False, False)", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638841.525283, - "msecs": 525.0, - "relativeCreated": 81788.422077, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:21,525" - } - ], - "time_consumption": 2.5272369384765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Windowlight (gfw.marion)", - "True" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638841.5253649, - "msecs": 525.0, - "relativeCreated": 81788.503974, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Windowlight (gfw.marion) to True", - "asctime": "2025-08-19 23:27:21,525", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/marion/window_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638841.7262218, - "msecs": 726.0, - "relativeCreated": 81989.360913, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/marion/window_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:21,726", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638841.5254526, - "msecs": 525.0, - "relativeCreated": 81788.591493, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:21,525" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638841.5259705, - "msecs": 525.0, - "relativeCreated": 81789.109388, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:21,525" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638841.5268154, - "msecs": 526.0, - "relativeCreated": 81789.954484, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:21,526" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/marion/window_light", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638841.7260163, - "msecs": 726.0, - "relativeCreated": 81989.155295, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/marion/window_light): True ()", - "asctime": "2025-08-19 23:27:21,726" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/marion/window_light", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638841.7261631, - "msecs": 726.0, - "relativeCreated": 81989.302229, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/marion/window_light): result = True ()", - "asctime": "2025-08-19 23:27:21,726" - } - ], - "time_consumption": 5.8650970458984375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Tradfri Windowlight (gfw.marion)", - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "device_follow", - "created": 1755638841.726336, - "msecs": 726.0, - "relativeCreated": 81989.474947, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Setting state of Tradfri Windowlight (gfw.marion) to False", - "asctime": "2025-08-19 23:27:21,726", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/marion/window_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638841.927433, - "msecs": 927.0, - "relativeCreated": 82190.571965, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/marion/window_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:21,927", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755638841.726528, - "msecs": 726.0, - "relativeCreated": 81989.666894, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:21,726" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/marion/window_light", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638841.7275937, - "msecs": 727.0, - "relativeCreated": 81990.732623, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:21,727" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/window_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638841.7289886, - "msecs": 728.0, - "relativeCreated": 81992.127574, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:21,728" - }, - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for videv/gfw/marion/window_light", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1755638841.9272277, - "msecs": 927.0, - "relativeCreated": 82190.366629, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Result (Value for videv/gfw/marion/window_light): False ()", - "asctime": "2025-08-19 23:27:21,927" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Value for videv/gfw/marion/window_light", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1755638841.9273734, - "msecs": 927.0, - "relativeCreated": 82190.512414, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Expectation (Value for videv/gfw/marion/window_light): result = False ()", - "asctime": "2025-08-19 23:27:21,927" - } - ], - "time_consumption": 5.9604644775390625e-05 - } - ], - "time_consumption": 0.603182315826416, - "time_start": "2025-08-19 23:27:21,324", - "time_finished": "2025-08-19 23:27:21,927" - }, - "REQ-0345": { - "name": "__tLogger__", - "msg": "REQ-0345", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 329, - "funcName": "testCase", - "created": 1755638841.927657, - "msecs": 927.0, - "relativeCreated": 82190.795982, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "REQ-0345", - "asctime": "2025-08-19 23:27:21,927", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Prepare: Setting devices to last state %s", - "args": [ - "False" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", - "filename": "common_testcases.py", - "module": "common_testcases", - "exc_text": null, - "stack_info": null, - "lineno": 19, - "funcName": "device_follow", - "created": 1755638842.028112, - "msecs": 28.0, - "relativeCreated": 82291.25098, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:22,028", - "moduleLogger": [ - { - "name": "smart_brain.devices.zigbee_gfw.gfw.marion.window_light", - "msg": "Unexpected key %s", - "args": [ - "relay/0" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638841.927755, - "msecs": 927.0, - "relativeCreated": 82190.894003, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key relay/0", - "asctime": "2025-08-19 23:27:21,927" + "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload false", + "asctime": "2025-08-22 20:54:00,444" } ], "time_consumption": 0.1003568172454834 @@ -106860,16 +9463,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638842.1288826, - "msecs": 128.0, - "relativeCreated": 82392.021656, - "thread": 131449228267776, + "created": 1755888840.545678, + "msecs": 545.0, + "relativeCreated": 2420.487151, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:22,128", + "asctime": "2025-08-22 20:54:00,545", "moduleLogger": [ { "name": "__unittest__", @@ -106888,16 +9491,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638842.128673, - "msecs": 128.0, - "relativeCreated": 82391.812051, - "thread": 131449228267776, + "created": 1755888840.5455587, + "msecs": 545.0, + "relativeCreated": 2420.368083, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:22,128" + "asctime": "2025-08-22 20:54:00,545" }, { "name": "__unittest__", @@ -106917,25 +9520,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638842.1288252, - "msecs": 128.0, - "relativeCreated": 82391.96416, - "thread": 131449228267776, + "created": 1755888840.5456135, + "msecs": 545.0, + "relativeCreated": 2420.422918, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:22,128" + "asctime": "2025-08-22 20:54:00,545" } ], - "time_consumption": 5.745887756347656e-05 + "time_consumption": 6.437301635742188e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (gfw.marion)", + "ViDevLight.state (ffe.livingroom.xmas_tree)", "True" ], "levelname": "DEBUG", @@ -106945,24 +9548,160 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638842.129044, - "msecs": 129.0, - "relativeCreated": 82392.182871, - "thread": 131449228267776, + "created": 1755888840.646269, + "msecs": 646.0, + "relativeCreated": 2521.078484, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.marion) to True", - "asctime": "2025-08-19 23:27:22,129", - "moduleLogger": [], - "time_consumption": 0.0 + "message": "Setting state of ViDevLight.state (ffe.livingroom.xmas_tree) to True", + "asctime": "2025-08-22 20:54:00,646", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/xmas_tree/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.5458114, + "msecs": 545.0, + "relativeCreated": 2420.620785, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload true", + "asctime": "2025-08-22 20:54:00,545" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.54824, + "msecs": 548.0, + "relativeCreated": 2423.049033, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,548" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.5484564, + "msecs": 548.0, + "relativeCreated": 2423.265807, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:00,548" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.5492477, + "msecs": 549.0, + "relativeCreated": 2424.057029, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,549" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/xmas_tree/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.590178, + "msecs": 590.0, + "relativeCreated": 2464.987243, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'true'", + "asctime": "2025-08-22 20:54:00,590" + } + ], + "time_consumption": 0.0560910701751709 }, { "name": "__tLogger__", - "msg": "Value for Tradfri Windowlight (gfw.marion) is correct (Content %s and Type is %s).", + "msg": "Value for Powerplug1P.state (ffe.livingroom.xmas-tree) is correct (Content %s and Type is %s).", "args": [ "True", "" @@ -106976,17 +9715,107163 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638842.330156, - "msecs": 330.0, - "relativeCreated": 82593.294978, - "thread": 131449228267776, + "created": 1755888840.6466494, + "msecs": 646.0, + "relativeCreated": 2521.458567, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for Tradfri Windowlight (gfw.marion) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:22,330", + "message": "Value for Powerplug1P.state (ffe.livingroom.xmas-tree) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:00,646", "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.livingroom.xmas-tree)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888840.6465232, + "msecs": 646.0, + "relativeCreated": 2521.332259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.livingroom.xmas-tree)): True ()", + "asctime": "2025-08-22 20:54:00,646" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.livingroom.xmas-tree)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888840.646595, + "msecs": 646.0, + "relativeCreated": 2521.404385, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.livingroom.xmas-tree)): result = True ()", + "asctime": "2025-08-22 20:54:00,646" + } + ], + "time_consumption": 5.435943603515625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.livingroom.xmas_tree)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888840.7473402, + "msecs": 747.0, + "relativeCreated": 2622.149622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.livingroom.xmas_tree) to False", + "asctime": "2025-08-22 20:54:00,747", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/xmas_tree/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.6468213, + "msecs": 646.0, + "relativeCreated": 2521.630508, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload false", + "asctime": "2025-08-22 20:54:00,646" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.6489, + "msecs": 648.0, + "relativeCreated": 2523.709409, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,648" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.6491115, + "msecs": 649.0, + "relativeCreated": 2523.92077, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:00,649" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.6495998, + "msecs": 649.0, + "relativeCreated": 2524.408887, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,649" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/xmas_tree/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.69117, + "msecs": 691.0, + "relativeCreated": 2565.97925, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'false'", + "asctime": "2025-08-22 20:54:00,691" + } + ], + "time_consumption": 0.05617022514343262 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.livingroom.xmas-tree) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888840.7476494, + "msecs": 747.0, + "relativeCreated": 2622.45884, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.livingroom.xmas-tree) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:00,747", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.livingroom.xmas-tree)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888840.7475607, + "msecs": 747.0, + "relativeCreated": 2622.369945, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.livingroom.xmas-tree)): False ()", + "asctime": "2025-08-22 20:54:00,747" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.livingroom.xmas-tree)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888840.747611, + "msecs": 747.0, + "relativeCreated": 2622.420435, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.livingroom.xmas-tree)): result = False ()", + "asctime": "2025-08-22 20:54:00,747" + } + ], + "time_consumption": 3.838539123535156e-05 + } + ], + "time_consumption": 0.3028078079223633, + "time_start": "2025-08-22 20:54:00,444", + "time_finished": "2025-08-22 20:54:00,747" + }, + "Powerplug1P.state (ffe.livingroom.xmas-tree) -> ViDevLight.state (ffe.livingroom.xmas_tree)": { + "name": "__tLogger__", + "msg": "Powerplug1P.state (ffe.livingroom.xmas-tree) -> ViDevLight.state (ffe.livingroom.xmas_tree)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888840.747868, + "msecs": 747.0, + "relativeCreated": 2622.677334, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug1P.state (ffe.livingroom.xmas-tree) -> ViDevLight.state (ffe.livingroom.xmas_tree)", + "asctime": "2025-08-22 20:54:00,747", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888840.848414, + "msecs": 848.0, + "relativeCreated": 2723.223198, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:00,848", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/xmas_tree/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.7479868, + "msecs": 747.0, + "relativeCreated": 2622.795908, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/xmas_tree/state/set and payload false", + "asctime": "2025-08-22 20:54:00,747" + } + ], + "time_consumption": 0.10042715072631836 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888840.8488262, + "msecs": 848.0, + "relativeCreated": 2723.63541, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:00,848", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888840.848719, + "msecs": 848.0, + "relativeCreated": 2723.52799, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:00,848" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888840.8487818, + "msecs": 848.0, + "relativeCreated": 2723.590939, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:00,848" + } + ], + "time_consumption": 4.4345855712890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.livingroom.xmas-tree)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888840.9494705, + "msecs": 949.0, + "relativeCreated": 2824.27971, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.livingroom.xmas-tree) to True", + "asctime": "2025-08-22 20:54:00,949", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.8489666, + "msecs": 848.0, + "relativeCreated": 2723.776006, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:00,848" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.8500693, + "msecs": 850.0, + "relativeCreated": 2724.878472, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:00,850" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/xmas_tree/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.8514218, + "msecs": 851.0, + "relativeCreated": 2726.231067, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'true'", + "asctime": "2025-08-22 20:54:00,851" + } + ], + "time_consumption": 0.09804868698120117 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.livingroom.xmas_tree) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888840.949828, + "msecs": 949.0, + "relativeCreated": 2824.636952, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.livingroom.xmas_tree) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:00,949", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.livingroom.xmas_tree)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888840.9497294, + "msecs": 949.0, + "relativeCreated": 2824.538759, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.livingroom.xmas_tree)): True ()", + "asctime": "2025-08-22 20:54:00,949" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.livingroom.xmas_tree)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888840.949787, + "msecs": 949.0, + "relativeCreated": 2824.596197, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.xmas_tree)): result = True ()", + "asctime": "2025-08-22 20:54:00,949" + } + ], + "time_consumption": 4.100799560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.livingroom.xmas-tree)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888841.0504093, + "msecs": 50.0, + "relativeCreated": 2925.218325, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.livingroom.xmas-tree) to False", + "asctime": "2025-08-22 20:54:01,050", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888840.9499586, + "msecs": 949.0, + "relativeCreated": 2824.767811, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:00,949" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.xmas-tree", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/xmas-tree", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.9509645, + "msecs": 950.0, + "relativeCreated": 2825.773785, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/xmas-tree and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:00,950" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.xmas_tree.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/xmas_tree/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888840.952491, + "msecs": 952.0, + "relativeCreated": 2827.300212, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/xmas_tree/state and payload b'false'", + "asctime": "2025-08-22 20:54:00,952" + } + ], + "time_consumption": 0.09791827201843262 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.livingroom.xmas_tree) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.0507643, + "msecs": 50.0, + "relativeCreated": 2925.573613, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.livingroom.xmas_tree) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:01,050", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.livingroom.xmas_tree)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.0506232, + "msecs": 50.0, + "relativeCreated": 2925.43253, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.livingroom.xmas_tree)): False ()", + "asctime": "2025-08-22 20:54:01,050" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.livingroom.xmas_tree)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.050703, + "msecs": 50.0, + "relativeCreated": 2925.51228, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.xmas_tree)): result = False ()", + "asctime": "2025-08-22 20:54:01,050" + } + ], + "time_consumption": 6.127357482910156e-05 + } + ], + "time_consumption": 0.30289626121520996, + "time_start": "2025-08-22 20:54:00,747", + "time_finished": "2025-08-22 20:54:01,050" + }, + "ViDevLight.brightness (ffe.livingroom.main_light) -> Light.brightness (ffe.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (ffe.livingroom.main_light) -> Light.brightness (ffe.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888841.0509384, + "msecs": 50.0, + "relativeCreated": 2925.747643, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (ffe.livingroom.main_light) -> Light.brightness (ffe.livingroom.main_light)", + "asctime": "2025-08-22 20:54:01,050", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888841.151717, + "msecs": 151.0, + "relativeCreated": 3026.526, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:01,151", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.051063, + "msecs": 51.0, + "relativeCreated": 2925.872162, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:01,051" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.0513344, + "msecs": 51.0, + "relativeCreated": 2926.143632, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,051" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0522044, + "msecs": 52.0, + "relativeCreated": 2927.013399, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:01,052" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.052583, + "msecs": 52.0, + "relativeCreated": 2927.392071, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,052" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.093187, + "msecs": 93.0, + "relativeCreated": 2967.996195, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:01,093" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.093456, + "msecs": 93.0, + "relativeCreated": 2968.265384, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,093" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0937622, + "msecs": 93.0, + "relativeCreated": 2968.571263, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:01,093" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.0938985, + "msecs": 93.0, + "relativeCreated": 2968.707716, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,093" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0941718, + "msecs": 94.0, + "relativeCreated": 2968.980842, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:01,094" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.0943055, + "msecs": 94.0, + "relativeCreated": 2969.114656, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,094" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0945475, + "msecs": 94.0, + "relativeCreated": 2969.356574, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:01,094" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.0946932, + "msecs": 94.0, + "relativeCreated": 2969.502237, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,094" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0949223, + "msecs": 94.0, + "relativeCreated": 2969.731408, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:01,094" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.0950475, + "msecs": 95.0, + "relativeCreated": 2969.856731, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,095" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0952618, + "msecs": 95.0, + "relativeCreated": 2970.071031, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:01,095" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.0954065, + "msecs": 95.0, + "relativeCreated": 2970.215729, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,095" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0956256, + "msecs": 95.0, + "relativeCreated": 2970.434864, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:01,095" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.095875, + "msecs": 95.0, + "relativeCreated": 2970.684432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,095" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0960968, + "msecs": 96.0, + "relativeCreated": 2970.906122, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,096" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.096291, + "msecs": 96.0, + "relativeCreated": 2971.100191, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,096" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0964694, + "msecs": 96.0, + "relativeCreated": 2971.278767, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,096" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0966802, + "msecs": 96.0, + "relativeCreated": 2971.489388, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,096" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.0968747, + "msecs": 96.0, + "relativeCreated": 2971.68386, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,096" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.1360893, + "msecs": 136.0, + "relativeCreated": 3010.898654, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:54:01,136" + } + ], + "time_consumption": 0.015627622604370117 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888841.2526999, + "msecs": 252.0, + "relativeCreated": 3127.509136, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:01,252", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.1519926, + "msecs": 151.0, + "relativeCreated": 3026.801788, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:01,151" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.152307, + "msecs": 152.0, + "relativeCreated": 3027.116185, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,152" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.1545968, + "msecs": 154.0, + "relativeCreated": 3029.406171, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:01,154" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.1549318, + "msecs": 154.0, + "relativeCreated": 3029.74103, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,154" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.1967976, + "msecs": 196.0, + "relativeCreated": 3071.606956, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:01,196" + } + ], + "time_consumption": 0.05590224266052246 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.2530277, + "msecs": 253.0, + "relativeCreated": 3127.836745, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:01,253", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.2529325, + "msecs": 252.0, + "relativeCreated": 3127.741732, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:01,252" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.2529874, + "msecs": 252.0, + "relativeCreated": 3127.796723, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:01,252" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888841.3536258, + "msecs": 353.0, + "relativeCreated": 3228.435198, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:01,353", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.2531352, + "msecs": 253.0, + "relativeCreated": 3127.94435, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:01,253" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.2556906, + "msecs": 255.0, + "relativeCreated": 3130.499734, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:01,255" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.25593, + "msecs": 255.0, + "relativeCreated": 3130.739011, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,255" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.2565274, + "msecs": 256.0, + "relativeCreated": 3131.336547, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,256" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.297724, + "msecs": 297.0, + "relativeCreated": 3172.53326, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:01,297" + } + ], + "time_consumption": 0.05590176582336426 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.3539672, + "msecs": 353.0, + "relativeCreated": 3228.776376, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:01,353", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.3538754, + "msecs": 353.0, + "relativeCreated": 3228.684612, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:01,353" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.3539286, + "msecs": 353.0, + "relativeCreated": 3228.73761, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:01,353" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888841.4544687, + "msecs": 454.0, + "relativeCreated": 3329.277743, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.main_light) to 20", + "asctime": "2025-08-22 20:54:01,454", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.3540978, + "msecs": 354.0, + "relativeCreated": 3228.907062, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:01,354" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.356733, + "msecs": 356.0, + "relativeCreated": 3231.542315, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:01,356" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.3569744, + "msecs": 356.0, + "relativeCreated": 3231.78347, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,356" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.3574724, + "msecs": 357.0, + "relativeCreated": 3232.281764, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,357" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.3988142, + "msecs": 398.0, + "relativeCreated": 3273.623442, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:01,398" + } + ], + "time_consumption": 0.05565452575683594 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.4547942, + "msecs": 454.0, + "relativeCreated": 3329.603488, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:01,454", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.454704, + "msecs": 454.0, + "relativeCreated": 3329.513346, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:01,454" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.4547553, + "msecs": 454.0, + "relativeCreated": 3329.564603, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:01,454" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888841.5553496, + "msecs": 555.0, + "relativeCreated": 3430.158728, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.main_light) to 40", + "asctime": "2025-08-22 20:54:01,555", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.4549012, + "msecs": 454.0, + "relativeCreated": 3329.710513, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:01,454" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.4572577, + "msecs": 457.0, + "relativeCreated": 3332.066991, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:01,457" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.457524, + "msecs": 457.0, + "relativeCreated": 3332.333104, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,457" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.4581227, + "msecs": 458.0, + "relativeCreated": 3332.931859, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,458" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.4994512, + "msecs": 499.0, + "relativeCreated": 3374.26037, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:01,499" + } + ], + "time_consumption": 0.055898427963256836 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.5556948, + "msecs": 555.0, + "relativeCreated": 3430.504148, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:01,555", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.5555682, + "msecs": 555.0, + "relativeCreated": 3430.377248, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:01,555" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.5556276, + "msecs": 555.0, + "relativeCreated": 3430.436695, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:01,555" + } + ], + "time_consumption": 6.723403930664062e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888841.6562645, + "msecs": 656.0, + "relativeCreated": 3531.073689, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.main_light) to 60", + "asctime": "2025-08-22 20:54:01,656", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.5558033, + "msecs": 555.0, + "relativeCreated": 3430.612503, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:01,555" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.5584269, + "msecs": 558.0, + "relativeCreated": 3433.236236, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:01,558" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.5587075, + "msecs": 558.0, + "relativeCreated": 3433.516642, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,558" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.559207, + "msecs": 559.0, + "relativeCreated": 3434.016089, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,559" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.6009653, + "msecs": 600.0, + "relativeCreated": 3475.774693, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:01,600" + } + ], + "time_consumption": 0.05529928207397461 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.6565783, + "msecs": 656.0, + "relativeCreated": 3531.38762, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:01,656", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.6564686, + "msecs": 656.0, + "relativeCreated": 3531.277933, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:01,656" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.6565416, + "msecs": 656.0, + "relativeCreated": 3531.350888, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:01,656" + } + ], + "time_consumption": 3.6716461181640625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888841.7570348, + "msecs": 757.0, + "relativeCreated": 3631.844, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.main_light) to 80", + "asctime": "2025-08-22 20:54:01,757", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.6567023, + "msecs": 656.0, + "relativeCreated": 3531.511391, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:01,656" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.6589746, + "msecs": 658.0, + "relativeCreated": 3533.783829, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:01,658" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.6592374, + "msecs": 659.0, + "relativeCreated": 3534.046558, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,659" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.6598942, + "msecs": 659.0, + "relativeCreated": 3534.703535, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,659" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.7010593, + "msecs": 701.0, + "relativeCreated": 3575.868656, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:01,701" + } + ], + "time_consumption": 0.05597543716430664 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.7573345, + "msecs": 757.0, + "relativeCreated": 3632.14378, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:01,757", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.7572432, + "msecs": 757.0, + "relativeCreated": 3632.05233, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:01,757" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.757295, + "msecs": 757.0, + "relativeCreated": 3632.104094, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:01,757" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888841.8579004, + "msecs": 857.0, + "relativeCreated": 3732.70947, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.main_light) to 100", + "asctime": "2025-08-22 20:54:01,857", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.7574403, + "msecs": 757.0, + "relativeCreated": 3632.249363, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:01,757" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.7594047, + "msecs": 759.0, + "relativeCreated": 3634.213854, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:01,759" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.7596986, + "msecs": 759.0, + "relativeCreated": 3634.50796, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:01,759" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.7602913, + "msecs": 760.0, + "relativeCreated": 3635.100478, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:01,760" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888841.8019733, + "msecs": 801.0, + "relativeCreated": 3676.782605, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:01,801" + } + ], + "time_consumption": 0.05592703819274902 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888841.858234, + "msecs": 858.0, + "relativeCreated": 3733.043153, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:01,858", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888841.8581154, + "msecs": 858.0, + "relativeCreated": 3732.924622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:01,858" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888841.8581936, + "msecs": 858.0, + "relativeCreated": 3733.002936, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:01,858" + } + ], + "time_consumption": 4.029273986816406e-05 + } + ], + "time_consumption": 0.807295560836792, + "time_start": "2025-08-22 20:54:01,050", + "time_finished": "2025-08-22 20:54:01,858" + }, + "Light.brightness (ffe.livingroom.main_light) -> ViDevLight.brightness (ffe.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "Light.brightness (ffe.livingroom.main_light) -> ViDevLight.brightness (ffe.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888841.8584445, + "msecs": 858.0, + "relativeCreated": 3733.253721, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (ffe.livingroom.main_light) -> ViDevLight.brightness (ffe.livingroom.main_light)", + "asctime": "2025-08-22 20:54:01,858", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888841.9588246, + "msecs": 958.0, + "relativeCreated": 3833.633851, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:01,958", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888842.0596337, + "msecs": 59.0, + "relativeCreated": 3934.442944, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:02,059", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888841.9591458, + "msecs": 959.0, + "relativeCreated": 3833.955078, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:01,959" + } + ], + "time_consumption": 0.10048794746398926 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.0599806, + "msecs": 59.0, + "relativeCreated": 3934.789699, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:02,059", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.0598862, + "msecs": 59.0, + "relativeCreated": 3934.695622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:02,059" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.0599415, + "msecs": 59.0, + "relativeCreated": 3934.750793, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:02,059" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888842.1606495, + "msecs": 160.0, + "relativeCreated": 4035.458658, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:02,160", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.060134, + "msecs": 60.0, + "relativeCreated": 3934.943193, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:02,060" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.0610235, + "msecs": 61.0, + "relativeCreated": 3935.832756, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:02,061" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.0624375, + "msecs": 62.0, + "relativeCreated": 3937.24683, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:02,062" + } + ], + "time_consumption": 0.09821200370788574 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.1610086, + "msecs": 161.0, + "relativeCreated": 4035.817935, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:02,161", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.1609101, + "msecs": 160.0, + "relativeCreated": 4035.719229, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:02,160" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.1609657, + "msecs": 160.0, + "relativeCreated": 4035.774757, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:02,160" + } + ], + "time_consumption": 4.291534423828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888842.261765, + "msecs": 261.0, + "relativeCreated": 4136.574435, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.main_light) to 20", + "asctime": "2025-08-22 20:54:02,261", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.1611745, + "msecs": 161.0, + "relativeCreated": 4035.983857, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:02,161" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.1622636, + "msecs": 162.0, + "relativeCreated": 4037.07269, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:02,162" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.16386, + "msecs": 163.0, + "relativeCreated": 4038.669146, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:02,163" + } + ], + "time_consumption": 0.09790492057800293 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.2620726, + "msecs": 262.0, + "relativeCreated": 4136.881684, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:02,262", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.2619832, + "msecs": 261.0, + "relativeCreated": 4136.792402, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:02,261" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.2620344, + "msecs": 262.0, + "relativeCreated": 4136.843596, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:02,262" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888842.3627677, + "msecs": 362.0, + "relativeCreated": 4237.576882, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.main_light) to 40", + "asctime": "2025-08-22 20:54:02,362", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.2622366, + "msecs": 262.0, + "relativeCreated": 4137.045984, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:02,262" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.263346, + "msecs": 263.0, + "relativeCreated": 4138.155069, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:02,263" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.2648363, + "msecs": 264.0, + "relativeCreated": 4139.645688, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:02,264" + } + ], + "time_consumption": 0.0979313850402832 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.3631308, + "msecs": 363.0, + "relativeCreated": 4237.940171, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:02,363", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.3630006, + "msecs": 363.0, + "relativeCreated": 4237.809925, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:02,363" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.3630884, + "msecs": 363.0, + "relativeCreated": 4237.897501, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:02,363" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888842.4637108, + "msecs": 463.0, + "relativeCreated": 4338.520069, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.main_light) to 60", + "asctime": "2025-08-22 20:54:02,463", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.363296, + "msecs": 363.0, + "relativeCreated": 4238.105277, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:02,363" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.3643317, + "msecs": 364.0, + "relativeCreated": 4239.140949, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:02,364" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.3659642, + "msecs": 365.0, + "relativeCreated": 4240.773552, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:02,365" + } + ], + "time_consumption": 0.09774661064147949 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.464117, + "msecs": 464.0, + "relativeCreated": 4338.926252, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:02,464", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.4640093, + "msecs": 464.0, + "relativeCreated": 4338.818483, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:02,464" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.4640749, + "msecs": 464.0, + "relativeCreated": 4338.883995, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:02,464" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888842.5646946, + "msecs": 564.0, + "relativeCreated": 4439.503877, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.main_light) to 80", + "asctime": "2025-08-22 20:54:02,564", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.4643133, + "msecs": 464.0, + "relativeCreated": 4339.122602, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:02,464" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.465068, + "msecs": 465.0, + "relativeCreated": 4339.877336, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:02,465" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.466337, + "msecs": 466.0, + "relativeCreated": 4341.146216, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:02,466" + } + ], + "time_consumption": 0.0983576774597168 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.5650153, + "msecs": 565.0, + "relativeCreated": 4439.824404, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:02,565", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.5649192, + "msecs": 564.0, + "relativeCreated": 4439.728459, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:02,564" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.5649729, + "msecs": 564.0, + "relativeCreated": 4439.78209, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:02,564" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888842.6655183, + "msecs": 665.0, + "relativeCreated": 4540.327491, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.main_light) to 100", + "asctime": "2025-08-22 20:54:02,665", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.5651822, + "msecs": 565.0, + "relativeCreated": 4439.991369, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:02,565" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.565999, + "msecs": 565.0, + "relativeCreated": 4440.808303, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:02,565" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.5673416, + "msecs": 567.0, + "relativeCreated": 4442.150728, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:02,567" + } + ], + "time_consumption": 0.09817671775817871 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.665853, + "msecs": 665.0, + "relativeCreated": 4540.662035, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:02,665", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.66576, + "msecs": 665.0, + "relativeCreated": 4540.569177, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:02,665" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.665811, + "msecs": 665.0, + "relativeCreated": 4540.620165, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:02,665" + } + ], + "time_consumption": 4.1961669921875e-05 + } + ], + "time_consumption": 0.8074085712432861, + "time_start": "2025-08-22 20:54:01,858", + "time_finished": "2025-08-22 20:54:02,665" + }, + "ViDevLight.color_temp (ffe.livingroom.main_light) -> Light.color_temp (ffe.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.color_temp (ffe.livingroom.main_light) -> Light.color_temp (ffe.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888842.6660829, + "msecs": 666.0, + "relativeCreated": 4540.89193, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.color_temp (ffe.livingroom.main_light) -> Light.color_temp (ffe.livingroom.main_light)", + "asctime": "2025-08-22 20:54:02,666", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888842.7664895, + "msecs": 766.0, + "relativeCreated": 4641.298786, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:02,766", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888842.8674586, + "msecs": 867.0, + "relativeCreated": 4742.267808, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:02,867", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.7668142, + "msecs": 766.0, + "relativeCreated": 4641.623349, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:02,766" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.7671857, + "msecs": 767.0, + "relativeCreated": 4641.994779, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:02,767" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.7695725, + "msecs": 769.0, + "relativeCreated": 4644.381832, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:02,769" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.7699578, + "msecs": 769.0, + "relativeCreated": 4644.767134, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:02,769" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.8124027, + "msecs": 812.0, + "relativeCreated": 4687.211874, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:02,812" + } + ], + "time_consumption": 0.055055856704711914 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.867809, + "msecs": 867.0, + "relativeCreated": 4742.618133, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:02,867", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.8676913, + "msecs": 867.0, + "relativeCreated": 4742.50056, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:02,867" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.8677657, + "msecs": 867.0, + "relativeCreated": 4742.574965, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:02,867" + } + ], + "time_consumption": 4.3392181396484375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888842.9683616, + "msecs": 968.0, + "relativeCreated": 4843.171003, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:02,968", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.867925, + "msecs": 867.0, + "relativeCreated": 4742.734167, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 0", + "asctime": "2025-08-22 20:54:02,867" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.869775, + "msecs": 869.0, + "relativeCreated": 4744.584311, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:02,869" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.8701105, + "msecs": 870.0, + "relativeCreated": 4744.919775, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:02,870" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.870827, + "msecs": 870.0, + "relativeCreated": 4745.636256, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:02,870" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.9115412, + "msecs": 911.0, + "relativeCreated": 4786.350565, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:02,911" + } + ], + "time_consumption": 0.05682039260864258 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888842.9687314, + "msecs": 968.0, + "relativeCreated": 4843.540732, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:02,968", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888842.9685848, + "msecs": 968.0, + "relativeCreated": 4843.393892, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:02,968" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888842.9686358, + "msecs": 968.0, + "relativeCreated": 4843.445189, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:02,968" + } + ], + "time_consumption": 9.560585021972656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.0692852, + "msecs": 69.0, + "relativeCreated": 4944.094298, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.main_light) to 2", + "asctime": "2025-08-22 20:54:03,069", + "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", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.9688482, + "msecs": 968.0, + "relativeCreated": 4843.657405, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 2", + "asctime": "2025-08-22 20:54:02,968" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.9708142, + "msecs": 970.0, + "relativeCreated": 4845.623537, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:02,970" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888842.971057, + "msecs": 971.0, + "relativeCreated": 4845.866096, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:02,971" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888842.971529, + "msecs": 971.0, + "relativeCreated": 4846.338176, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:02,971" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.0131204, + "msecs": 13.0, + "relativeCreated": 4887.929753, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:03,013" + } + ], + "time_consumption": 0.05616474151611328 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.069623, + "msecs": 69.0, + "relativeCreated": 4944.432356, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:03,069", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.0695074, + "msecs": 69.0, + "relativeCreated": 4944.316618, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:03,069" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.069584, + "msecs": 69.0, + "relativeCreated": 4944.393036, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:03,069" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.1702201, + "msecs": 170.0, + "relativeCreated": 5045.029386, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.main_light) to 4", + "asctime": "2025-08-22 20:54:03,170", + "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", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.0697613, + "msecs": 69.0, + "relativeCreated": 4944.570437, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 4", + "asctime": "2025-08-22 20:54:03,069" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.0721214, + "msecs": 72.0, + "relativeCreated": 4946.930653, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:03,072" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.0723577, + "msecs": 72.0, + "relativeCreated": 4947.166765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:03,072" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.0729024, + "msecs": 72.0, + "relativeCreated": 4947.711654, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:03,072" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.1144166, + "msecs": 114.0, + "relativeCreated": 4989.22599, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:03,114" + } + ], + "time_consumption": 0.055803537368774414 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.170583, + "msecs": 170.0, + "relativeCreated": 5045.392296, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:03,170", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.170496, + "msecs": 170.0, + "relativeCreated": 5045.305217, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:03,170" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.1705463, + "msecs": 170.0, + "relativeCreated": 5045.35542, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:03,170" + } + ], + "time_consumption": 3.6716461181640625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.2710683, + "msecs": 271.0, + "relativeCreated": 5145.877717, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.main_light) to 6", + "asctime": "2025-08-22 20:54:03,271", + "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", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.1707358, + "msecs": 170.0, + "relativeCreated": 5045.545078, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 6", + "asctime": "2025-08-22 20:54:03,170" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.1730783, + "msecs": 173.0, + "relativeCreated": 5047.887588, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:03,173" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.1733348, + "msecs": 173.0, + "relativeCreated": 5048.143918, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:03,173" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.1738994, + "msecs": 173.0, + "relativeCreated": 5048.708804, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:03,173" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.2163415, + "msecs": 216.0, + "relativeCreated": 5091.150864, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:03,216" + } + ], + "time_consumption": 0.05472683906555176 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.2713869, + "msecs": 271.0, + "relativeCreated": 5146.196038, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:03,271", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.2712762, + "msecs": 271.0, + "relativeCreated": 5146.085542, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:03,271" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.2713253, + "msecs": 271.0, + "relativeCreated": 5146.134623, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:03,271" + } + ], + "time_consumption": 6.151199340820312e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.3719225, + "msecs": 371.0, + "relativeCreated": 5246.731601, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.main_light) to 8", + "asctime": "2025-08-22 20:54:03,371", + "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", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.271525, + "msecs": 271.0, + "relativeCreated": 5146.334126, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 8", + "asctime": "2025-08-22 20:54:03,271" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.2736492, + "msecs": 273.0, + "relativeCreated": 5148.458512, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:03,273" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.2739706, + "msecs": 273.0, + "relativeCreated": 5148.779943, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:03,273" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.274498, + "msecs": 274.0, + "relativeCreated": 5149.307174, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:03,274" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.3162355, + "msecs": 316.0, + "relativeCreated": 5191.044841, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:03,316" + } + ], + "time_consumption": 0.05568695068359375 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.37232, + "msecs": 372.0, + "relativeCreated": 5247.12927, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:03,372", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.372191, + "msecs": 372.0, + "relativeCreated": 5247.00029, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:03,372" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.372264, + "msecs": 372.0, + "relativeCreated": 5247.073197, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:03,372" + } + ], + "time_consumption": 5.602836608886719e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.472907, + "msecs": 472.0, + "relativeCreated": 5347.716317, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.main_light) to 10", + "asctime": "2025-08-22 20:54:03,472", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.3724697, + "msecs": 372.0, + "relativeCreated": 5247.279031, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:03,372" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.3748593, + "msecs": 374.0, + "relativeCreated": 5249.668524, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:03,374" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.3750975, + "msecs": 375.0, + "relativeCreated": 5249.906856, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:03,375" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.3756385, + "msecs": 375.0, + "relativeCreated": 5250.447635, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:03,375" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.4175284, + "msecs": 417.0, + "relativeCreated": 5292.337517, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:03,417" + } + ], + "time_consumption": 0.05537867546081543 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.4732423, + "msecs": 473.0, + "relativeCreated": 5348.05165, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:03,473", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.4731479, + "msecs": 473.0, + "relativeCreated": 5347.957059, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:03,473" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.473201, + "msecs": 473.0, + "relativeCreated": 5348.010411, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:03,473" + } + ], + "time_consumption": 4.124641418457031e-05 + } + ], + "time_consumption": 0.807159423828125, + "time_start": "2025-08-22 20:54:02,666", + "time_finished": "2025-08-22 20:54:03,473" + }, + "Light.color_temp (ffe.livingroom.main_light) -> ViDevLight.color_temp (ffe.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "Light.color_temp (ffe.livingroom.main_light) -> ViDevLight.color_temp (ffe.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888843.4734702, + "msecs": 473.0, + "relativeCreated": 5348.279569, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.color_temp (ffe.livingroom.main_light) -> ViDevLight.color_temp (ffe.livingroom.main_light)", + "asctime": "2025-08-22 20:54:03,473", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888843.5737019, + "msecs": 573.0, + "relativeCreated": 5448.511, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:03,573", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888843.6744504, + "msecs": 674.0, + "relativeCreated": 5549.259642, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:03,674", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.573938, + "msecs": 573.0, + "relativeCreated": 5448.747222, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:03,573" + } + ], + "time_consumption": 0.10051250457763672 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.674864, + "msecs": 674.0, + "relativeCreated": 5549.673314, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:03,674", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.674729, + "msecs": 674.0, + "relativeCreated": 5549.53836, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:03,674" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.6748188, + "msecs": 674.0, + "relativeCreated": 5549.628048, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:03,674" + } + ], + "time_consumption": 4.5299530029296875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.7754335, + "msecs": 775.0, + "relativeCreated": 5650.242692, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:03,775", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.6750364, + "msecs": 675.0, + "relativeCreated": 5549.845558, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:03,675" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.676167, + "msecs": 676.0, + "relativeCreated": 5550.976019, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:03,676" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.6783934, + "msecs": 678.0, + "relativeCreated": 5553.202522, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:03,678" + } + ], + "time_consumption": 0.09704017639160156 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.7758138, + "msecs": 775.0, + "relativeCreated": 5650.623169, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:03,775", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.7757065, + "msecs": 775.0, + "relativeCreated": 5650.515753, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:03,775" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.775771, + "msecs": 775.0, + "relativeCreated": 5650.580015, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:03,775" + } + ], + "time_consumption": 4.291534423828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.8764842, + "msecs": 876.0, + "relativeCreated": 5751.293381, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.main_light) to 2", + "asctime": "2025-08-22 20:54:03,876", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.7759793, + "msecs": 775.0, + "relativeCreated": 5650.788596, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:03,775" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.777031, + "msecs": 777.0, + "relativeCreated": 5651.840026, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:03,777" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.778611, + "msecs": 778.0, + "relativeCreated": 5653.420142, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:03,778" + } + ], + "time_consumption": 0.09787321090698242 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.8768287, + "msecs": 876.0, + "relativeCreated": 5751.637799, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:03,876", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.8767354, + "msecs": 876.0, + "relativeCreated": 5751.544748, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:03,876" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.8767896, + "msecs": 876.0, + "relativeCreated": 5751.598826, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:03,876" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888843.9773953, + "msecs": 977.0, + "relativeCreated": 5852.204549, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.main_light) to 4", + "asctime": "2025-08-22 20:54:03,977", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.8769808, + "msecs": 876.0, + "relativeCreated": 5751.789905, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:03,876" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.8781722, + "msecs": 878.0, + "relativeCreated": 5752.981332, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:03,878" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.8794558, + "msecs": 879.0, + "relativeCreated": 5754.265007, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:03,879" + } + ], + "time_consumption": 0.09793949127197266 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888843.9777274, + "msecs": 977.0, + "relativeCreated": 5852.53675, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:03,977", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888843.9776115, + "msecs": 977.0, + "relativeCreated": 5852.420655, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:03,977" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888843.977688, + "msecs": 977.0, + "relativeCreated": 5852.497311, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:03,977" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.078763, + "msecs": 78.0, + "relativeCreated": 5953.57237, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.main_light) to 6", + "asctime": "2025-08-22 20:54:04,078", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888843.9779167, + "msecs": 977.0, + "relativeCreated": 5852.725951, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:03,977" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.9789486, + "msecs": 978.0, + "relativeCreated": 5853.757887, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:03,978" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888843.980214, + "msecs": 980.0, + "relativeCreated": 5855.023182, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:03,980" + } + ], + "time_consumption": 0.09854888916015625 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.0791075, + "msecs": 79.0, + "relativeCreated": 5953.916755, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:04,079", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.0790057, + "msecs": 79.0, + "relativeCreated": 5953.814886, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:04,079" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.079063, + "msecs": 79.0, + "relativeCreated": 5953.872219, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:04,079" + } + ], + "time_consumption": 4.458427429199219e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.179807, + "msecs": 179.0, + "relativeCreated": 6054.616106, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.main_light) to 8", + "asctime": "2025-08-22 20:54:04,179", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.0792952, + "msecs": 79.0, + "relativeCreated": 5954.104545, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:04,079" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.080291, + "msecs": 80.0, + "relativeCreated": 5955.100268, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:04,080" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.0824716, + "msecs": 82.0, + "relativeCreated": 5957.280899, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:04,082" + } + ], + "time_consumption": 0.0973353385925293 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.1801212, + "msecs": 180.0, + "relativeCreated": 6054.930205, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:04,180", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.180031, + "msecs": 180.0, + "relativeCreated": 6054.840268, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:04,180" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.180083, + "msecs": 180.0, + "relativeCreated": 6054.892299, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:04,180" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.2807992, + "msecs": 280.0, + "relativeCreated": 6155.608339, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.main_light) to 10", + "asctime": "2025-08-22 20:54:04,280", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.1802719, + "msecs": 180.0, + "relativeCreated": 6055.081087, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:04,180" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.181267, + "msecs": 181.0, + "relativeCreated": 6056.076064, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:04,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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.182567, + "msecs": 182.0, + "relativeCreated": 6057.376263, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:04,182" + } + ], + "time_consumption": 0.09823226928710938 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.2811255, + "msecs": 281.0, + "relativeCreated": 6155.934901, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:04,281", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.2810295, + "msecs": 281.0, + "relativeCreated": 6155.838528, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:04,281" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.2810843, + "msecs": 281.0, + "relativeCreated": 6155.893778, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:04,281" + } + ], + "time_consumption": 4.124641418457031e-05 + } + ], + "time_consumption": 0.8076553344726562, + "time_start": "2025-08-22 20:54:03,473", + "time_finished": "2025-08-22 20:54:04,281" + }, + "ViDevLight.brightness (ffe.livingroom.floorlamp) -> Light.brightness (ffe.livingroom.floor_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (ffe.livingroom.floorlamp) -> Light.brightness (ffe.livingroom.floor_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888844.281408, + "msecs": 281.0, + "relativeCreated": 6156.217346, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (ffe.livingroom.floorlamp) -> Light.brightness (ffe.livingroom.floor_light)", + "asctime": "2025-08-22 20:54:04,281", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888844.3819036, + "msecs": 381.0, + "relativeCreated": 6256.712907, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:04,381", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888844.4833922, + "msecs": 483.0, + "relativeCreated": 6358.201425, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:04,483", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.3821962, + "msecs": 382.0, + "relativeCreated": 6257.005566, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:04,382" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.3825214, + "msecs": 382.0, + "relativeCreated": 6257.330572, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,382" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.382684, + "msecs": 382.0, + "relativeCreated": 6257.493171, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,382" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.38281, + "msecs": 382.0, + "relativeCreated": 6257.619282, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,382" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.382935, + "msecs": 382.0, + "relativeCreated": 6257.744153, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,382" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.3830385, + "msecs": 383.0, + "relativeCreated": 6257.847654, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,383" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.3831394, + "msecs": 383.0, + "relativeCreated": 6257.948434, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,383" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.3861113, + "msecs": 386.0, + "relativeCreated": 6260.920401, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,386" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.3864484, + "msecs": 386.0, + "relativeCreated": 6261.257621, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,386" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4272087, + "msecs": 427.0, + "relativeCreated": 6302.017945, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,427" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4275916, + "msecs": 427.0, + "relativeCreated": 6302.400888, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,427" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4278533, + "msecs": 427.0, + "relativeCreated": 6302.662608, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,427" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4280689, + "msecs": 428.0, + "relativeCreated": 6302.878189, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,428" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4282677, + "msecs": 428.0, + "relativeCreated": 6303.077013, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,428" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4284742, + "msecs": 428.0, + "relativeCreated": 6303.28338, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,428" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4287283, + "msecs": 428.0, + "relativeCreated": 6303.53766, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,428" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4290102, + "msecs": 429.0, + "relativeCreated": 6303.819516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,429" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4292207, + "msecs": 429.0, + "relativeCreated": 6304.029875, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,429" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.429419, + "msecs": 429.0, + "relativeCreated": 6304.228172, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,429" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4691834, + "msecs": 469.0, + "relativeCreated": 6343.992695, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:04,469" + } + ], + "time_consumption": 0.014208793640136719 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.4837897, + "msecs": 483.0, + "relativeCreated": 6358.598881, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:04,483", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.4836884, + "msecs": 483.0, + "relativeCreated": 6358.497682, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:04,483" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.4837465, + "msecs": 483.0, + "relativeCreated": 6358.555871, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:04,483" + } + ], + "time_consumption": 4.315376281738281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.floorlamp)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.5842676, + "msecs": 584.0, + "relativeCreated": 6459.076669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.floorlamp) to 0", + "asctime": "2025-08-22 20:54:04,584", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.483927, + "msecs": 483.0, + "relativeCreated": 6358.736233, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:04,483" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4868312, + "msecs": 486.0, + "relativeCreated": 6361.640314, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:04,486" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.4870863, + "msecs": 487.0, + "relativeCreated": 6361.895692, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,487" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4874983, + "msecs": 487.0, + "relativeCreated": 6362.307487, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:04,487" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.4876723, + "msecs": 487.0, + "relativeCreated": 6362.481449, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,487" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.487901, + "msecs": 487.0, + "relativeCreated": 6362.710037, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:04,487" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.488048, + "msecs": 488.0, + "relativeCreated": 6362.85734, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,488" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4883213, + "msecs": 488.0, + "relativeCreated": 6363.130585, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:04,488" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.48847, + "msecs": 488.0, + "relativeCreated": 6363.279189, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,488" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4887369, + "msecs": 488.0, + "relativeCreated": 6363.546095, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:04,488" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.4888816, + "msecs": 488.0, + "relativeCreated": 6363.690871, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,488" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4891446, + "msecs": 489.0, + "relativeCreated": 6363.953704, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:04,489" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.4892795, + "msecs": 489.0, + "relativeCreated": 6364.088749, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,489" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4895253, + "msecs": 489.0, + "relativeCreated": 6364.334417, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,489" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4897835, + "msecs": 489.0, + "relativeCreated": 6364.592772, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,489" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4899833, + "msecs": 489.0, + "relativeCreated": 6364.792355, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,489" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4902089, + "msecs": 490.0, + "relativeCreated": 6365.018076, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,490" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.4904008, + "msecs": 490.0, + "relativeCreated": 6365.209926, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,490" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5299954, + "msecs": 529.0, + "relativeCreated": 6404.804819, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,529" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5305536, + "msecs": 530.0, + "relativeCreated": 6405.36293, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:04,530" + } + ], + "time_consumption": 0.05371403694152832 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.5846076, + "msecs": 584.0, + "relativeCreated": 6459.416611, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:04,584", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.5845203, + "msecs": 584.0, + "relativeCreated": 6459.329594, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.floor_light)): 0 ()", + "asctime": "2025-08-22 20:54:04,584" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.5845726, + "msecs": 584.0, + "relativeCreated": 6459.38181, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.floor_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:04,584" + } + ], + "time_consumption": 3.504753112792969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.floorlamp)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.685169, + "msecs": 685.0, + "relativeCreated": 6559.978145, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.floorlamp) to 20", + "asctime": "2025-08-22 20:54:04,685", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.5847232, + "msecs": 584.0, + "relativeCreated": 6459.53237, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:04,584" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5875342, + "msecs": 587.0, + "relativeCreated": 6462.343435, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:04,587" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.5877783, + "msecs": 587.0, + "relativeCreated": 6462.587654, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,587" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5880418, + "msecs": 588.0, + "relativeCreated": 6462.850898, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:04,588" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.588185, + "msecs": 588.0, + "relativeCreated": 6462.994306, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,588" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5884717, + "msecs": 588.0, + "relativeCreated": 6463.280854, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:04,588" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.5886173, + "msecs": 588.0, + "relativeCreated": 6463.426561, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,588" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5888956, + "msecs": 588.0, + "relativeCreated": 6463.704754, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:04,588" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.5890276, + "msecs": 589.0, + "relativeCreated": 6463.836789, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,589" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5892668, + "msecs": 589.0, + "relativeCreated": 6464.075971, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:04,589" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.5893986, + "msecs": 589.0, + "relativeCreated": 6464.20771, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,589" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5896282, + "msecs": 589.0, + "relativeCreated": 6464.437273, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:04,589" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.5897713, + "msecs": 589.0, + "relativeCreated": 6464.580512, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,589" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5899982, + "msecs": 589.0, + "relativeCreated": 6464.807492, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,589" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5902283, + "msecs": 590.0, + "relativeCreated": 6465.037557, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,590" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.590404, + "msecs": 590.0, + "relativeCreated": 6465.21332, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,590" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.59057, + "msecs": 590.0, + "relativeCreated": 6465.379333, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,590" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5907493, + "msecs": 590.0, + "relativeCreated": 6465.558526, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,590" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.5909283, + "msecs": 590.0, + "relativeCreated": 6465.737529, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,590" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6311107, + "msecs": 631.0, + "relativeCreated": 6505.919944, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:04,631" + } + ], + "time_consumption": 0.05405831336975098 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.6855435, + "msecs": 685.0, + "relativeCreated": 6560.352645, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:04,685", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.6854517, + "msecs": 685.0, + "relativeCreated": 6560.26101, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.floor_light)): 20 ()", + "asctime": "2025-08-22 20:54:04,685" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.6855044, + "msecs": 685.0, + "relativeCreated": 6560.31374, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.floor_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:04,685" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.floorlamp)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.786121, + "msecs": 786.0, + "relativeCreated": 6660.930165, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.floorlamp) to 40", + "asctime": "2025-08-22 20:54:04,786", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.6856503, + "msecs": 685.0, + "relativeCreated": 6560.459543, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:04,685" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6891866, + "msecs": 689.0, + "relativeCreated": 6563.995892, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:04,689" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.6894362, + "msecs": 689.0, + "relativeCreated": 6564.245266, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,689" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.689707, + "msecs": 689.0, + "relativeCreated": 6564.516273, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:04,689" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.68985, + "msecs": 689.0, + "relativeCreated": 6564.659232, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,689" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6901307, + "msecs": 690.0, + "relativeCreated": 6564.939986, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:04,690" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.6902847, + "msecs": 690.0, + "relativeCreated": 6565.094021, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,690" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6905463, + "msecs": 690.0, + "relativeCreated": 6565.35535, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:04,690" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.6907158, + "msecs": 690.0, + "relativeCreated": 6565.525043, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,690" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6909828, + "msecs": 690.0, + "relativeCreated": 6565.792089, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:04,690" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.6911175, + "msecs": 691.0, + "relativeCreated": 6565.926818, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,691" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.691354, + "msecs": 691.0, + "relativeCreated": 6566.163275, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:04,691" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.6914895, + "msecs": 691.0, + "relativeCreated": 6566.298694, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,691" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6917305, + "msecs": 691.0, + "relativeCreated": 6566.53973, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,691" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.691957, + "msecs": 691.0, + "relativeCreated": 6566.766207, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,691" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6921403, + "msecs": 692.0, + "relativeCreated": 6566.949409, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,692" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.692329, + "msecs": 692.0, + "relativeCreated": 6567.138217, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,692" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.692507, + "msecs": 692.0, + "relativeCreated": 6567.316454, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,692" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.6926942, + "msecs": 692.0, + "relativeCreated": 6567.503462, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,692" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.734477, + "msecs": 734.0, + "relativeCreated": 6609.286271, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:04,734" + } + ], + "time_consumption": 0.05164384841918945 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.786538, + "msecs": 786.0, + "relativeCreated": 6661.347225, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:04,786", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.7863948, + "msecs": 786.0, + "relativeCreated": 6661.204116, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.floor_light)): 40 ()", + "asctime": "2025-08-22 20:54:04,786" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.786498, + "msecs": 786.0, + "relativeCreated": 6661.307323, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.floor_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:04,786" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.floorlamp)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.8871198, + "msecs": 887.0, + "relativeCreated": 6761.929018, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.floorlamp) to 60", + "asctime": "2025-08-22 20:54:04,887", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.7866514, + "msecs": 786.0, + "relativeCreated": 6661.460525, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:04,786" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7900658, + "msecs": 790.0, + "relativeCreated": 6664.874997, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:04,790" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.7903306, + "msecs": 790.0, + "relativeCreated": 6665.139743, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,790" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.790634, + "msecs": 790.0, + "relativeCreated": 6665.44313, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:04,790" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.7908204, + "msecs": 790.0, + "relativeCreated": 6665.629667, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,790" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.791123, + "msecs": 791.0, + "relativeCreated": 6665.93209, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:04,791" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.7912717, + "msecs": 791.0, + "relativeCreated": 6666.080958, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,791" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7915208, + "msecs": 791.0, + "relativeCreated": 6666.329927, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:04,791" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.791651, + "msecs": 791.0, + "relativeCreated": 6666.460308, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,791" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.79191, + "msecs": 791.0, + "relativeCreated": 6666.719096, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:04,791" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.79203, + "msecs": 792.0, + "relativeCreated": 6666.839552, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,792" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7922454, + "msecs": 792.0, + "relativeCreated": 6667.054845, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:04,792" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.7923713, + "msecs": 792.0, + "relativeCreated": 6667.180333, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,792" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7925806, + "msecs": 792.0, + "relativeCreated": 6667.389852, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,792" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7928197, + "msecs": 792.0, + "relativeCreated": 6667.628901, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,792" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7930083, + "msecs": 793.0, + "relativeCreated": 6667.817663, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,793" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7931912, + "msecs": 793.0, + "relativeCreated": 6668.000378, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,793" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7933667, + "msecs": 793.0, + "relativeCreated": 6668.176017, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,793" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.7935436, + "msecs": 793.0, + "relativeCreated": 6668.352811, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,793" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8358626, + "msecs": 835.0, + "relativeCreated": 6710.671709, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:04,835" + } + ], + "time_consumption": 0.05125713348388672 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.8874786, + "msecs": 887.0, + "relativeCreated": 6762.287668, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:04,887", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.8873887, + "msecs": 887.0, + "relativeCreated": 6762.197837, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.floor_light)): 60 ()", + "asctime": "2025-08-22 20:54:04,887" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.8874407, + "msecs": 887.0, + "relativeCreated": 6762.249948, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.floor_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:04,887" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.floorlamp)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888844.9880514, + "msecs": 988.0, + "relativeCreated": 6862.860566, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.floorlamp) to 80", + "asctime": "2025-08-22 20:54:04,988", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.8875813, + "msecs": 887.0, + "relativeCreated": 6762.390566, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:04,887" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8909848, + "msecs": 890.0, + "relativeCreated": 6765.794034, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:04,890" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.891198, + "msecs": 891.0, + "relativeCreated": 6766.007167, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,891" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8914719, + "msecs": 891.0, + "relativeCreated": 6766.281046, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:04,891" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.891615, + "msecs": 891.0, + "relativeCreated": 6766.424197, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,891" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8919072, + "msecs": 891.0, + "relativeCreated": 6766.716633, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:04,891" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.8920374, + "msecs": 892.0, + "relativeCreated": 6766.846721, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,892" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.892267, + "msecs": 892.0, + "relativeCreated": 6767.076205, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:04,892" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.8923972, + "msecs": 892.0, + "relativeCreated": 6767.206265, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,892" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8926206, + "msecs": 892.0, + "relativeCreated": 6767.429847, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:04,892" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.8927772, + "msecs": 892.0, + "relativeCreated": 6767.586577, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,892" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8930008, + "msecs": 893.0, + "relativeCreated": 6767.810271, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:04,893" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.8931177, + "msecs": 893.0, + "relativeCreated": 6767.926872, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,893" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8933284, + "msecs": 893.0, + "relativeCreated": 6768.137522, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,893" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8935363, + "msecs": 893.0, + "relativeCreated": 6768.345583, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,893" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8937356, + "msecs": 893.0, + "relativeCreated": 6768.544826, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,893" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8939145, + "msecs": 893.0, + "relativeCreated": 6768.723565, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,893" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8941011, + "msecs": 894.0, + "relativeCreated": 6768.910565, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,894" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.8942764, + "msecs": 894.0, + "relativeCreated": 6769.085578, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,894" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.936811, + "msecs": 936.0, + "relativeCreated": 6811.620203, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:04,936" + } + ], + "time_consumption": 0.05124044418334961 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888844.988395, + "msecs": 988.0, + "relativeCreated": 6863.204284, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:04,988", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888844.9883106, + "msecs": 988.0, + "relativeCreated": 6863.119886, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.floor_light)): 80 ()", + "asctime": "2025-08-22 20:54:04,988" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888844.9883602, + "msecs": 988.0, + "relativeCreated": 6863.16946, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.floor_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:04,988" + } + ], + "time_consumption": 3.4809112548828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.livingroom.floorlamp)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888845.0889754, + "msecs": 88.0, + "relativeCreated": 6963.784591, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.livingroom.floorlamp) to 100", + "asctime": "2025-08-22 20:54:05,088", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.9884908, + "msecs": 988.0, + "relativeCreated": 6863.299941, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:04,988" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.992063, + "msecs": 992.0, + "relativeCreated": 6866.872268, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,992" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.9923584, + "msecs": 992.0, + "relativeCreated": 6867.167543, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,992" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.992676, + "msecs": 992.0, + "relativeCreated": 6867.485256, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,992" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.992837, + "msecs": 992.0, + "relativeCreated": 6867.645979, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,992" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.993115, + "msecs": 993.0, + "relativeCreated": 6867.924046, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,993" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.9932477, + "msecs": 993.0, + "relativeCreated": 6868.056954, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,993" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.9934719, + "msecs": 993.0, + "relativeCreated": 6868.28086, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,993" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.9935925, + "msecs": 993.0, + "relativeCreated": 6868.401704, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,993" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.9938562, + "msecs": 993.0, + "relativeCreated": 6868.665453, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,993" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.9939804, + "msecs": 993.0, + "relativeCreated": 6868.789633, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,993" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.994204, + "msecs": 994.0, + "relativeCreated": 6869.013305, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:04,994" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888844.9943247, + "msecs": 994.0, + "relativeCreated": 6869.133866, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:04,994" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.9945374, + "msecs": 994.0, + "relativeCreated": 6869.346617, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,994" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.9947734, + "msecs": 994.0, + "relativeCreated": 6869.582774, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,994" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.994955, + "msecs": 994.0, + "relativeCreated": 6869.764116, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,994" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.995129, + "msecs": 995.0, + "relativeCreated": 6869.938208, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,995" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.9952998, + "msecs": 995.0, + "relativeCreated": 6870.109082, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,995" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888844.9954736, + "msecs": 995.0, + "relativeCreated": 6870.282781, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:04,995" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.0367506, + "msecs": 36.0, + "relativeCreated": 6911.559821, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:05,036" + } + ], + "time_consumption": 0.05222487449645996 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.0894022, + "msecs": 89.0, + "relativeCreated": 6964.211307, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.livingroom.floor_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:05,089", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.089246, + "msecs": 89.0, + "relativeCreated": 6964.055136, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.livingroom.floor_light)): 100 ()", + "asctime": "2025-08-22 20:54:05,089" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.livingroom.floor_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.0892978, + "msecs": 89.0, + "relativeCreated": 6964.106866, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.livingroom.floor_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:05,089" + } + ], + "time_consumption": 0.00010442733764648438 + } + ], + "time_consumption": 0.8079941272735596, + "time_start": "2025-08-22 20:54:04,281", + "time_finished": "2025-08-22 20:54:05,089" + }, + "Light.brightness (ffe.livingroom.floor_light) -> ViDevLight.brightness (ffe.livingroom.floorlamp)": { + "name": "__tLogger__", + "msg": "Light.brightness (ffe.livingroom.floor_light) -> ViDevLight.brightness (ffe.livingroom.floorlamp)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888845.089643, + "msecs": 89.0, + "relativeCreated": 6964.45214, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (ffe.livingroom.floor_light) -> ViDevLight.brightness (ffe.livingroom.floorlamp)", + "asctime": "2025-08-22 20:54:05,089", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888845.189888, + "msecs": 189.0, + "relativeCreated": 7064.69712, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:05,189", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888845.290735, + "msecs": 290.0, + "relativeCreated": 7165.54429, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:05,290", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.190233, + "msecs": 190.0, + "relativeCreated": 7065.042389, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:05,190" + } + ], + "time_consumption": 0.10050201416015625 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.2911234, + "msecs": 291.0, + "relativeCreated": 7165.932706, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:05,291", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.2910178, + "msecs": 291.0, + "relativeCreated": 7165.826937, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:05,291" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.2910755, + "msecs": 291.0, + "relativeCreated": 7165.884833, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:05,291" + } + ], + "time_consumption": 4.792213439941406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.floor_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888845.3924403, + "msecs": 392.0, + "relativeCreated": 7267.249554, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.floor_light) to 0", + "asctime": "2025-08-22 20:54:05,392", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.2913067, + "msecs": 291.0, + "relativeCreated": 7166.116075, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,291" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.2915611, + "msecs": 291.0, + "relativeCreated": 7166.37053, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,291" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.291695, + "msecs": 291.0, + "relativeCreated": 7166.504373, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,291" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.2918005, + "msecs": 291.0, + "relativeCreated": 7166.609715, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,291" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.2919025, + "msecs": 291.0, + "relativeCreated": 7166.711811, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,291" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.2919962, + "msecs": 291.0, + "relativeCreated": 7166.805424, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,291" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.2927985, + "msecs": 292.0, + "relativeCreated": 7167.607815, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,292" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.2932374, + "msecs": 293.0, + "relativeCreated": 7168.046846, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,293" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.2936451, + "msecs": 293.0, + "relativeCreated": 7168.454354, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,293" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.2940469, + "msecs": 294.0, + "relativeCreated": 7168.856262, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,294" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.2944121, + "msecs": 294.0, + "relativeCreated": 7169.2213, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,294" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.2947905, + "msecs": 294.0, + "relativeCreated": 7169.59971, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,294" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.2951546, + "msecs": 295.0, + "relativeCreated": 7169.963821, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:05,295" + } + ], + "time_consumption": 0.09728574752807617 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.392801, + "msecs": 392.0, + "relativeCreated": 7267.610141, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:05,392", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.3926485, + "msecs": 392.0, + "relativeCreated": 7267.457595, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): 0 ()", + "asctime": "2025-08-22 20:54:05,392" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.3927338, + "msecs": 392.0, + "relativeCreated": 7267.542909, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): result = 0 ()", + "asctime": "2025-08-22 20:54:05,392" + } + ], + "time_consumption": 6.723403930664062e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.floor_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888845.494189, + "msecs": 494.0, + "relativeCreated": 7368.998254, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.floor_light) to 20", + "asctime": "2025-08-22 20:54:05,494", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.392979, + "msecs": 392.0, + "relativeCreated": 7267.788214, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,392" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.3932402, + "msecs": 393.0, + "relativeCreated": 7268.049468, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,393" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.3933635, + "msecs": 393.0, + "relativeCreated": 7268.172626, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,393" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.3934722, + "msecs": 393.0, + "relativeCreated": 7268.281529, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,393" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.3935864, + "msecs": 393.0, + "relativeCreated": 7268.39575, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,393" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.3937016, + "msecs": 393.0, + "relativeCreated": 7268.510893, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,393" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.3946235, + "msecs": 394.0, + "relativeCreated": 7269.43279, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,394" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.3950946, + "msecs": 395.0, + "relativeCreated": 7269.903793, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,395" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.4352436, + "msecs": 435.0, + "relativeCreated": 7310.052802, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,435" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.4355779, + "msecs": 435.0, + "relativeCreated": 7310.387218, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,435" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.435843, + "msecs": 435.0, + "relativeCreated": 7310.65243, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,435" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.4360456, + "msecs": 436.0, + "relativeCreated": 7310.854846, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,436" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.4362493, + "msecs": 436.0, + "relativeCreated": 7311.058687, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:05,436" + } + ], + "time_consumption": 0.057939767837524414 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.494491, + "msecs": 494.0, + "relativeCreated": 7369.300454, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:05,494", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.494402, + "msecs": 494.0, + "relativeCreated": 7369.21135, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): 20 ()", + "asctime": "2025-08-22 20:54:05,494" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.4944525, + "msecs": 494.0, + "relativeCreated": 7369.261634, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): result = 20 ()", + "asctime": "2025-08-22 20:54:05,494" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.floor_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888845.5958223, + "msecs": 595.0, + "relativeCreated": 7470.631645, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.floor_light) to 40", + "asctime": "2025-08-22 20:54:05,595", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.4946501, + "msecs": 494.0, + "relativeCreated": 7369.459285, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,494" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.494959, + "msecs": 494.0, + "relativeCreated": 7369.768289, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,494" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.4950843, + "msecs": 495.0, + "relativeCreated": 7369.893641, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,495" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.495212, + "msecs": 495.0, + "relativeCreated": 7370.021357, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,495" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.4953177, + "msecs": 495.0, + "relativeCreated": 7370.12707, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,495" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.4954185, + "msecs": 495.0, + "relativeCreated": 7370.227809, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,495" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.4962106, + "msecs": 496.0, + "relativeCreated": 7371.019911, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,496" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.4966931, + "msecs": 496.0, + "relativeCreated": 7371.502386, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,496" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.5372312, + "msecs": 537.0, + "relativeCreated": 7412.040297, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,537" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.5375834, + "msecs": 537.0, + "relativeCreated": 7412.392528, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,537" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.5378437, + "msecs": 537.0, + "relativeCreated": 7412.652978, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,537" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.5380418, + "msecs": 538.0, + "relativeCreated": 7412.851101, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,538" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.5382442, + "msecs": 538.0, + "relativeCreated": 7413.053585, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:05,538" + } + ], + "time_consumption": 0.057578086853027344 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.5961542, + "msecs": 596.0, + "relativeCreated": 7470.963261, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:05,596", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.5960362, + "msecs": 596.0, + "relativeCreated": 7470.845337, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): 40 ()", + "asctime": "2025-08-22 20:54:05,596" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.5961103, + "msecs": 596.0, + "relativeCreated": 7470.919646, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): result = 40 ()", + "asctime": "2025-08-22 20:54:05,596" + } + ], + "time_consumption": 4.38690185546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.floor_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888845.6975343, + "msecs": 697.0, + "relativeCreated": 7572.343334, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.floor_light) to 60", + "asctime": "2025-08-22 20:54:05,697", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.5963333, + "msecs": 596.0, + "relativeCreated": 7471.142514, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,596" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.5965881, + "msecs": 596.0, + "relativeCreated": 7471.397176, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,596" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.5967307, + "msecs": 596.0, + "relativeCreated": 7471.539972, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,596" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.5968351, + "msecs": 596.0, + "relativeCreated": 7471.6442, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,596" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.5969362, + "msecs": 596.0, + "relativeCreated": 7471.74532, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,596" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.597043, + "msecs": 597.0, + "relativeCreated": 7471.852062, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,597" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.5978842, + "msecs": 597.0, + "relativeCreated": 7472.693371, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,597" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.5983682, + "msecs": 598.0, + "relativeCreated": 7473.17745, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,598" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.639173, + "msecs": 639.0, + "relativeCreated": 7513.982236, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.6395185, + "msecs": 639.0, + "relativeCreated": 7514.327662, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.6397803, + "msecs": 639.0, + "relativeCreated": 7514.5895, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,639" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.6399865, + "msecs": 639.0, + "relativeCreated": 7514.795573, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,639" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.640188, + "msecs": 640.0, + "relativeCreated": 7514.99708, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:05,640" + } + ], + "time_consumption": 0.057346343994140625 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.6978614, + "msecs": 697.0, + "relativeCreated": 7572.670555, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:05,697", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.6977715, + "msecs": 697.0, + "relativeCreated": 7572.580768, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): 60 ()", + "asctime": "2025-08-22 20:54:05,697" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.6978228, + "msecs": 697.0, + "relativeCreated": 7572.631916, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): result = 60 ()", + "asctime": "2025-08-22 20:54:05,697" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.floor_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888845.799146, + "msecs": 799.0, + "relativeCreated": 7673.955214, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.floor_light) to 80", + "asctime": "2025-08-22 20:54:05,799", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.6980205, + "msecs": 698.0, + "relativeCreated": 7572.829649, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,698" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.6982665, + "msecs": 698.0, + "relativeCreated": 7573.075757, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,698" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.6983798, + "msecs": 698.0, + "relativeCreated": 7573.188894, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,698" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.6984794, + "msecs": 698.0, + "relativeCreated": 7573.288491, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,698" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.6985817, + "msecs": 698.0, + "relativeCreated": 7573.391027, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,698" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.698696, + "msecs": 698.0, + "relativeCreated": 7573.505253, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,698" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.699587, + "msecs": 699.0, + "relativeCreated": 7574.396341, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,699" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.700022, + "msecs": 700.0, + "relativeCreated": 7574.831256, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,700" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.740454, + "msecs": 740.0, + "relativeCreated": 7615.263005, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,740" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.7408724, + "msecs": 740.0, + "relativeCreated": 7615.681565, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,740" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.7411, + "msecs": 741.0, + "relativeCreated": 7615.909275, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,741" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.7412975, + "msecs": 741.0, + "relativeCreated": 7616.106752, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,741" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.7415378, + "msecs": 741.0, + "relativeCreated": 7616.347012, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:05,741" + } + ], + "time_consumption": 0.05760812759399414 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.7994614, + "msecs": 799.0, + "relativeCreated": 7674.270689, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:05,799", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.7993653, + "msecs": 799.0, + "relativeCreated": 7674.174525, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): 80 ()", + "asctime": "2025-08-22 20:54:05,799" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.7994196, + "msecs": 799.0, + "relativeCreated": 7674.228811, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): result = 80 ()", + "asctime": "2025-08-22 20:54:05,799" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.livingroom.floor_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888845.9008524, + "msecs": 900.0, + "relativeCreated": 7775.661751, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.livingroom.floor_light) to 100", + "asctime": "2025-08-22 20:54:05,900", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.7996325, + "msecs": 799.0, + "relativeCreated": 7674.441894, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,799" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.7999403, + "msecs": 799.0, + "relativeCreated": 7674.749643, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,799" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.8000638, + "msecs": 800.0, + "relativeCreated": 7674.873005, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,800" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.8001707, + "msecs": 800.0, + "relativeCreated": 7674.979969, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,800" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.8002796, + "msecs": 800.0, + "relativeCreated": 7675.088764, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,800" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888845.800388, + "msecs": 800.0, + "relativeCreated": 7675.197304, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:05,800" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.8011978, + "msecs": 801.0, + "relativeCreated": 7676.006937, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,801" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.8016927, + "msecs": 801.0, + "relativeCreated": 7676.501874, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,801" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.8422606, + "msecs": 842.0, + "relativeCreated": 7717.069671, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,842" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.842596, + "msecs": 842.0, + "relativeCreated": 7717.405365, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,842" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.8428552, + "msecs": 842.0, + "relativeCreated": 7717.66447, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,842" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.843078, + "msecs": 843.0, + "relativeCreated": 7717.887075, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:05,843" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888845.8433118, + "msecs": 843.0, + "relativeCreated": 7718.121079, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:05,843" + } + ], + "time_consumption": 0.0575406551361084 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888845.9011736, + "msecs": 901.0, + "relativeCreated": 7775.982699, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.livingroom.floorlamp) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:05,901", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888845.901072, + "msecs": 901.0, + "relativeCreated": 7775.881363, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): 100 ()", + "asctime": "2025-08-22 20:54:05,901" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.livingroom.floorlamp)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888845.9011283, + "msecs": 901.0, + "relativeCreated": 7775.937431, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.livingroom.floorlamp)): result = 100 ()", + "asctime": "2025-08-22 20:54:05,901" + } + ], + "time_consumption": 4.5299530029296875e-05 + } + ], + "time_consumption": 0.811530590057373, + "time_start": "2025-08-22 20:54:05,089", + "time_finished": "2025-08-22 20:54:05,901" + }, + "ViDevLight.color_temp (ffe.livingroom.floorlamp) -> Light.color_temp (ffe.livingroom.floor_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.color_temp (ffe.livingroom.floorlamp) -> Light.color_temp (ffe.livingroom.floor_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888845.9014654, + "msecs": 901.0, + "relativeCreated": 7776.274465, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.color_temp (ffe.livingroom.floorlamp) -> Light.color_temp (ffe.livingroom.floor_light)", + "asctime": "2025-08-22 20:54:05,901", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888846.0017898, + "msecs": 1.0, + "relativeCreated": 7876.598965, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:06,001", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888846.1032283, + "msecs": 103.0, + "relativeCreated": 7978.037693, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:06,103", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.0020816, + "msecs": 2.0, + "relativeCreated": 7876.890883, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:06,002" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.0023956, + "msecs": 2.0, + "relativeCreated": 7877.204776, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,002" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.0025423, + "msecs": 2.0, + "relativeCreated": 7877.351547, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,002" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.0026503, + "msecs": 2.0, + "relativeCreated": 7877.459509, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,002" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.002777, + "msecs": 2.0, + "relativeCreated": 7877.586384, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,002" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.0028956, + "msecs": 2.0, + "relativeCreated": 7877.704854, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,002" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.0030112, + "msecs": 3.0, + "relativeCreated": 7877.82066, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,003" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0068157, + "msecs": 6.0, + "relativeCreated": 7881.624942, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,006" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0072145, + "msecs": 7.0, + "relativeCreated": 7882.023721, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,007" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0491078, + "msecs": 49.0, + "relativeCreated": 7923.916913, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,049" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0495615, + "msecs": 49.0, + "relativeCreated": 7924.370912, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,049" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0499005, + "msecs": 49.0, + "relativeCreated": 7924.709765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,049" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0501595, + "msecs": 50.0, + "relativeCreated": 7924.968701, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,050" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0504134, + "msecs": 50.0, + "relativeCreated": 7925.222421, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,050" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0506337, + "msecs": 50.0, + "relativeCreated": 7925.442834, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,050" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0509334, + "msecs": 50.0, + "relativeCreated": 7925.742489, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,050" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0512166, + "msecs": 51.0, + "relativeCreated": 7926.025799, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,051" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.051457, + "msecs": 51.0, + "relativeCreated": 7926.266195, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,051" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0517192, + "msecs": 51.0, + "relativeCreated": 7926.528325, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,051" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.0520177, + "msecs": 52.0, + "relativeCreated": 7926.826964, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:06,052" + } + ], + "time_consumption": 0.051210641860961914 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.1035888, + "msecs": 103.0, + "relativeCreated": 7978.398212, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:06,103", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.1034944, + "msecs": 103.0, + "relativeCreated": 7978.30359, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:06,103" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.103547, + "msecs": 103.0, + "relativeCreated": 7978.35638, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:06,103" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888846.2040873, + "msecs": 204.0, + "relativeCreated": 8078.896599, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.floorlamp) to 0", + "asctime": "2025-08-22 20:54:06,204", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.1037211, + "msecs": 103.0, + "relativeCreated": 7978.530478, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 0", + "asctime": "2025-08-22 20:54:06,103" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1068406, + "msecs": 106.0, + "relativeCreated": 7981.649819, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:06,106" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.107121, + "msecs": 107.0, + "relativeCreated": 7981.930052, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,107" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1074214, + "msecs": 107.0, + "relativeCreated": 7982.230676, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:06,107" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.1075745, + "msecs": 107.0, + "relativeCreated": 7982.383696, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,107" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1078868, + "msecs": 107.0, + "relativeCreated": 7982.696014, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:06,107" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.108029, + "msecs": 108.0, + "relativeCreated": 7982.838056, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,108" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.108277, + "msecs": 108.0, + "relativeCreated": 7983.086311, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:06,108" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.1084077, + "msecs": 108.0, + "relativeCreated": 7983.217, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,108" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1086464, + "msecs": 108.0, + "relativeCreated": 7983.455687, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:06,108" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.1088026, + "msecs": 108.0, + "relativeCreated": 7983.611765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,108" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1091557, + "msecs": 109.0, + "relativeCreated": 7983.964836, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:06,109" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.1092982, + "msecs": 109.0, + "relativeCreated": 7984.107384, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,109" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1095536, + "msecs": 109.0, + "relativeCreated": 7984.362947, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,109" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1098068, + "msecs": 109.0, + "relativeCreated": 7984.616192, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,109" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.110005, + "msecs": 110.0, + "relativeCreated": 7984.814137, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,110" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1101954, + "msecs": 110.0, + "relativeCreated": 7985.004694, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,110" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1103957, + "msecs": 110.0, + "relativeCreated": 7985.204832, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,110" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1105895, + "msecs": 110.0, + "relativeCreated": 7985.398762, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,110" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.1502044, + "msecs": 150.0, + "relativeCreated": 8025.013531, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:06,150" + } + ], + "time_consumption": 0.05388283729553223 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.2044475, + "msecs": 204.0, + "relativeCreated": 8079.256822, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:06,204", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.2043595, + "msecs": 204.0, + "relativeCreated": 8079.168561, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.floor_light)): 0 ()", + "asctime": "2025-08-22 20:54:06,204" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.2044108, + "msecs": 204.0, + "relativeCreated": 8079.22014, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.floor_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:06,204" + } + ], + "time_consumption": 3.6716461181640625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888846.30492, + "msecs": 304.0, + "relativeCreated": 8179.729383, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.floorlamp) to 2", + "asctime": "2025-08-22 20:54:06,304", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.204548, + "msecs": 204.0, + "relativeCreated": 8079.357004, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 2", + "asctime": "2025-08-22 20:54:06,204" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2077744, + "msecs": 207.0, + "relativeCreated": 8082.58359, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:06,207" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.2080472, + "msecs": 208.0, + "relativeCreated": 8082.856323, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:06,208" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.208353, + "msecs": 208.0, + "relativeCreated": 8083.162319, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:06,208" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.208508, + "msecs": 208.0, + "relativeCreated": 8083.31713, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:06,208" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.20883, + "msecs": 208.0, + "relativeCreated": 8083.639409, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:06,208" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.208974, + "msecs": 208.0, + "relativeCreated": 8083.782947, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:06,208" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2092335, + "msecs": 209.0, + "relativeCreated": 8084.042699, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:06,209" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.2093637, + "msecs": 209.0, + "relativeCreated": 8084.172881, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:06,209" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2095933, + "msecs": 209.0, + "relativeCreated": 8084.402634, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:06,209" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.2097404, + "msecs": 209.0, + "relativeCreated": 8084.549627, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:06,209" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2099738, + "msecs": 209.0, + "relativeCreated": 8084.782927, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:06,209" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.210113, + "msecs": 210.0, + "relativeCreated": 8084.922234, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:06,210" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2103412, + "msecs": 210.0, + "relativeCreated": 8085.150443, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:06,210" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2105663, + "msecs": 210.0, + "relativeCreated": 8085.375739, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:06,210" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.210771, + "msecs": 210.0, + "relativeCreated": 8085.580328, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:06,210" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.210962, + "msecs": 210.0, + "relativeCreated": 8085.771432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:06,210" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2111475, + "msecs": 211.0, + "relativeCreated": 8085.956634, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:06,211" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2113452, + "msecs": 211.0, + "relativeCreated": 8086.154355, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:06,211" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.2513325, + "msecs": 251.0, + "relativeCreated": 8126.141866, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:06,251" + } + ], + "time_consumption": 0.05358743667602539 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.30529, + "msecs": 305.0, + "relativeCreated": 8180.099132, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:06,305", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.3052025, + "msecs": 305.0, + "relativeCreated": 8180.011679, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.floor_light)): 2 ()", + "asctime": "2025-08-22 20:54:06,305" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.305252, + "msecs": 305.0, + "relativeCreated": 8180.06122, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.floor_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:06,305" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888846.405756, + "msecs": 405.0, + "relativeCreated": 8280.565089, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.floorlamp) to 4", + "asctime": "2025-08-22 20:54:06,405", + "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", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.3053882, + "msecs": 305.0, + "relativeCreated": 8180.197574, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 4", + "asctime": "2025-08-22 20:54:06,305" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3083973, + "msecs": 308.0, + "relativeCreated": 8183.206493, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:06,308" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.3086755, + "msecs": 308.0, + "relativeCreated": 8183.484795, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:06,308" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3089497, + "msecs": 308.0, + "relativeCreated": 8183.758912, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:06,308" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.3091066, + "msecs": 309.0, + "relativeCreated": 8183.915936, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:06,309" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3093815, + "msecs": 309.0, + "relativeCreated": 8184.190626, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:06,309" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.3095102, + "msecs": 309.0, + "relativeCreated": 8184.319295, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:06,309" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3097641, + "msecs": 309.0, + "relativeCreated": 8184.573353, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:06,309" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.3098948, + "msecs": 309.0, + "relativeCreated": 8184.704201, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:06,309" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3101203, + "msecs": 310.0, + "relativeCreated": 8184.929659, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:06,310" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.310241, + "msecs": 310.0, + "relativeCreated": 8185.050165, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:06,310" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3104525, + "msecs": 310.0, + "relativeCreated": 8185.261767, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:06,310" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.3105776, + "msecs": 310.0, + "relativeCreated": 8185.386827, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:06,310" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3108132, + "msecs": 310.0, + "relativeCreated": 8185.622457, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:06,310" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3110256, + "msecs": 311.0, + "relativeCreated": 8185.834924, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:06,311" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.311212, + "msecs": 311.0, + "relativeCreated": 8186.021193, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:06,311" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3113902, + "msecs": 311.0, + "relativeCreated": 8186.199516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:06,311" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3115637, + "msecs": 311.0, + "relativeCreated": 8186.372982, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:06,311" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.311749, + "msecs": 311.0, + "relativeCreated": 8186.557973, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:06,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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.3531291, + "msecs": 353.0, + "relativeCreated": 8227.938484, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:06,353" + } + ], + "time_consumption": 0.052626848220825195 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.4061446, + "msecs": 406.0, + "relativeCreated": 8280.953678, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:06,406", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.4060268, + "msecs": 406.0, + "relativeCreated": 8280.83589, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.floor_light)): 4 ()", + "asctime": "2025-08-22 20:54:06,406" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.406106, + "msecs": 406.0, + "relativeCreated": 8280.915458, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.floor_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:06,406" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888846.5066068, + "msecs": 506.0, + "relativeCreated": 8381.41602, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.floorlamp) to 6", + "asctime": "2025-08-22 20:54:06,506", + "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", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.4062467, + "msecs": 406.0, + "relativeCreated": 8281.055844, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 6", + "asctime": "2025-08-22 20:54:06,406" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.409227, + "msecs": 409.0, + "relativeCreated": 8284.036122, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:06,409" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.4095209, + "msecs": 409.0, + "relativeCreated": 8284.33017, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:06,409" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4098198, + "msecs": 409.0, + "relativeCreated": 8284.629019, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:06,409" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.4099832, + "msecs": 409.0, + "relativeCreated": 8284.792367, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:06,409" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4102902, + "msecs": 410.0, + "relativeCreated": 8285.099372, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:06,410" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.4104362, + "msecs": 410.0, + "relativeCreated": 8285.245209, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:06,410" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4107091, + "msecs": 410.0, + "relativeCreated": 8285.518556, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:06,410" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.410847, + "msecs": 410.0, + "relativeCreated": 8285.656219, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:06,410" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4110987, + "msecs": 411.0, + "relativeCreated": 8285.907942, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:06,411" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.411226, + "msecs": 411.0, + "relativeCreated": 8286.035337, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:06,411" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4114525, + "msecs": 411.0, + "relativeCreated": 8286.261685, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:06,411" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.41158, + "msecs": 411.0, + "relativeCreated": 8286.389469, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:06,411" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4118328, + "msecs": 411.0, + "relativeCreated": 8286.642016, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:06,411" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4120567, + "msecs": 412.0, + "relativeCreated": 8286.865938, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:06,412" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.412249, + "msecs": 412.0, + "relativeCreated": 8287.058298, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:06,412" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4124377, + "msecs": 412.0, + "relativeCreated": 8287.247103, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:06,412" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4126177, + "msecs": 412.0, + "relativeCreated": 8287.427037, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:06,412" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4128017, + "msecs": 412.0, + "relativeCreated": 8287.611021, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:06,412" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.4535902, + "msecs": 453.0, + "relativeCreated": 8328.39953, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:06,453" + } + ], + "time_consumption": 0.05301666259765625 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.5070114, + "msecs": 507.0, + "relativeCreated": 8381.820688, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:06,507", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.5069196, + "msecs": 506.0, + "relativeCreated": 8381.728933, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.floor_light)): 6 ()", + "asctime": "2025-08-22 20:54:06,506" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.5069735, + "msecs": 506.0, + "relativeCreated": 8381.782757, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.floor_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:06,506" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888846.6075168, + "msecs": 607.0, + "relativeCreated": 8482.325883, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.floorlamp) to 8", + "asctime": "2025-08-22 20:54:06,607", + "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", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.507118, + "msecs": 507.0, + "relativeCreated": 8381.92723, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 8", + "asctime": "2025-08-22 20:54:06,507" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5104067, + "msecs": 510.0, + "relativeCreated": 8385.215963, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:06,510" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.5106752, + "msecs": 510.0, + "relativeCreated": 8385.484339, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:06,510" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5109575, + "msecs": 510.0, + "relativeCreated": 8385.766831, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:06,510" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.511104, + "msecs": 511.0, + "relativeCreated": 8385.913129, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:06,511" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5120234, + "msecs": 512.0, + "relativeCreated": 8386.832894, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:06,512" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.5121672, + "msecs": 512.0, + "relativeCreated": 8386.976515, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:06,512" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5124066, + "msecs": 512.0, + "relativeCreated": 8387.215697, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:06,512" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.5125282, + "msecs": 512.0, + "relativeCreated": 8387.337263, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:06,512" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5127697, + "msecs": 512.0, + "relativeCreated": 8387.57891, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:06,512" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.5128899, + "msecs": 512.0, + "relativeCreated": 8387.699116, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:06,512" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5131185, + "msecs": 513.0, + "relativeCreated": 8387.927602, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:06,513" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.5132363, + "msecs": 513.0, + "relativeCreated": 8388.045447, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:06,513" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5134523, + "msecs": 513.0, + "relativeCreated": 8388.261611, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:06,513" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5136755, + "msecs": 513.0, + "relativeCreated": 8388.484642, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:06,513" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5138676, + "msecs": 513.0, + "relativeCreated": 8388.676717, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:06,513" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5140457, + "msecs": 514.0, + "relativeCreated": 8388.854989, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:06,514" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5142198, + "msecs": 514.0, + "relativeCreated": 8389.028885, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:06,514" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5143933, + "msecs": 514.0, + "relativeCreated": 8389.202679, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:06,514" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.5544863, + "msecs": 554.0, + "relativeCreated": 8429.295517, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:06,554" + } + ], + "time_consumption": 0.05303049087524414 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.6079001, + "msecs": 607.0, + "relativeCreated": 8482.709501, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:06,607", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.6077962, + "msecs": 607.0, + "relativeCreated": 8482.605513, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.floor_light)): 8 ()", + "asctime": "2025-08-22 20:54:06,607" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.6078494, + "msecs": 607.0, + "relativeCreated": 8482.658761, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.floor_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:06,607" + } + ], + "time_consumption": 5.078315734863281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888846.7084637, + "msecs": 708.0, + "relativeCreated": 8583.272732, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.livingroom.floorlamp) to 10", + "asctime": "2025-08-22 20:54:06,708", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.6080015, + "msecs": 608.0, + "relativeCreated": 8482.81079, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:06,608" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6109712, + "msecs": 610.0, + "relativeCreated": 8485.780268, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,610" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.611235, + "msecs": 611.0, + "relativeCreated": 8486.044088, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,611" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.611572, + "msecs": 611.0, + "relativeCreated": 8486.381104, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,611" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.6117542, + "msecs": 611.0, + "relativeCreated": 8486.563583, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,611" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6120331, + "msecs": 612.0, + "relativeCreated": 8486.842342, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,612" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.6121633, + "msecs": 612.0, + "relativeCreated": 8486.972453, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,612" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.612392, + "msecs": 612.0, + "relativeCreated": 8487.201213, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,612" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.6125107, + "msecs": 612.0, + "relativeCreated": 8487.319853, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,612" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6127615, + "msecs": 612.0, + "relativeCreated": 8487.57092, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,612" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.612886, + "msecs": 612.0, + "relativeCreated": 8487.695225, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,612" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6131005, + "msecs": 613.0, + "relativeCreated": 8487.909786, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:06,613" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.6132195, + "msecs": 613.0, + "relativeCreated": 8488.028886, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:06,613" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6134396, + "msecs": 613.0, + "relativeCreated": 8488.248725, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,613" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6136496, + "msecs": 613.0, + "relativeCreated": 8488.458899, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,613" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6138413, + "msecs": 613.0, + "relativeCreated": 8488.650767, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,613" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6140196, + "msecs": 614.0, + "relativeCreated": 8488.828843, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,614" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.614195, + "msecs": 614.0, + "relativeCreated": 8489.004489, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,614" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6143737, + "msecs": 614.0, + "relativeCreated": 8489.182818, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:06,614" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.6546812, + "msecs": 654.0, + "relativeCreated": 8529.490371, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:06,654" + } + ], + "time_consumption": 0.05378246307373047 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.7088764, + "msecs": 708.0, + "relativeCreated": 8583.685588, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.livingroom.floor_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:06,708", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.7087798, + "msecs": 708.0, + "relativeCreated": 8583.58913, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.livingroom.floor_light)): 10 ()", + "asctime": "2025-08-22 20:54:06,708" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.livingroom.floor_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.708836, + "msecs": 708.0, + "relativeCreated": 8583.645317, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.livingroom.floor_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:06,708" + } + ], + "time_consumption": 4.029273986816406e-05 + } + ], + "time_consumption": 0.8074109554290771, + "time_start": "2025-08-22 20:54:05,901", + "time_finished": "2025-08-22 20:54:06,708" + }, + "Light.color_temp (ffe.livingroom.floor_light) -> ViDevLight.color_temp (ffe.livingroom.floorlamp)": { + "name": "__tLogger__", + "msg": "Light.color_temp (ffe.livingroom.floor_light) -> ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888846.7091503, + "msecs": 709.0, + "relativeCreated": 8583.959483, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.color_temp (ffe.livingroom.floor_light) -> ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "asctime": "2025-08-22 20:54:06,709", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888846.8095417, + "msecs": 809.0, + "relativeCreated": 8684.35093, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:06,809", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888846.9104114, + "msecs": 910.0, + "relativeCreated": 8785.220442, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:06,910", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.809903, + "msecs": 809.0, + "relativeCreated": 8684.712011, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:06,809" + } + ], + "time_consumption": 0.10050845146179199 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888846.910827, + "msecs": 910.0, + "relativeCreated": 8785.636348, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:06,910", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888846.9107232, + "msecs": 910.0, + "relativeCreated": 8785.532644, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:06,910" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888846.9107847, + "msecs": 910.0, + "relativeCreated": 8785.593876, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:06,910" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.floor_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.0122108, + "msecs": 12.0, + "relativeCreated": 8887.020094, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.floor_light) to 0", + "asctime": "2025-08-22 20:54:07,012", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.9110053, + "msecs": 911.0, + "relativeCreated": 8785.814457, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,911" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.9112844, + "msecs": 911.0, + "relativeCreated": 8786.093719, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,911" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.911416, + "msecs": 911.0, + "relativeCreated": 8786.225258, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,911" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.9115229, + "msecs": 911.0, + "relativeCreated": 8786.332058, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,911" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.911628, + "msecs": 911.0, + "relativeCreated": 8786.437363, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,911" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888846.911749, + "msecs": 911.0, + "relativeCreated": 8786.558075, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:06,911" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.9126875, + "msecs": 912.0, + "relativeCreated": 8787.49691, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,912" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.9130173, + "msecs": 913.0, + "relativeCreated": 8787.826488, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,913" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.9133523, + "msecs": 913.0, + "relativeCreated": 8788.161394, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,913" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.913626, + "msecs": 913.0, + "relativeCreated": 8788.435153, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,913" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.913899, + "msecs": 913.0, + "relativeCreated": 8788.70831, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,913" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.9141748, + "msecs": 914.0, + "relativeCreated": 8788.98388, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:06,914" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888846.9145017, + "msecs": 914.0, + "relativeCreated": 8789.310986, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:06,914" + } + ], + "time_consumption": 0.09770917892456055 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.0125597, + "msecs": 12.0, + "relativeCreated": 8887.36897, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:07,012", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.0124593, + "msecs": 12.0, + "relativeCreated": 8887.268543, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): 0 ()", + "asctime": "2025-08-22 20:54:07,012" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.012516, + "msecs": 12.0, + "relativeCreated": 8887.325378, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): result = 0 ()", + "asctime": "2025-08-22 20:54:07,012" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.floor_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.113844, + "msecs": 113.0, + "relativeCreated": 8988.653235, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.floor_light) to 2", + "asctime": "2025-08-22 20:54:07,113", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.012768, + "msecs": 12.0, + "relativeCreated": 8887.577317, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:07,012" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.013033, + "msecs": 13.0, + "relativeCreated": 8887.842219, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:07,013" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.013169, + "msecs": 13.0, + "relativeCreated": 8887.978503, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:07,013" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.013276, + "msecs": 13.0, + "relativeCreated": 8888.085383, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:07,013" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.0133762, + "msecs": 13.0, + "relativeCreated": 8888.185559, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:07,013" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.0134826, + "msecs": 13.0, + "relativeCreated": 8888.291809, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:07,013" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.0142682, + "msecs": 14.0, + "relativeCreated": 8889.077471, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:07,014" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.014603, + "msecs": 14.0, + "relativeCreated": 8889.412198, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:07,014" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.0551152, + "msecs": 55.0, + "relativeCreated": 8929.92459, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:07,055" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.0554607, + "msecs": 55.0, + "relativeCreated": 8930.269917, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:07,055" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.055678, + "msecs": 55.0, + "relativeCreated": 8930.48709, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:07,055" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.0558631, + "msecs": 55.0, + "relativeCreated": 8930.672381, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:07,055" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.056051, + "msecs": 56.0, + "relativeCreated": 8930.860265, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:07,056" + } + ], + "time_consumption": 0.05779290199279785 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.1141624, + "msecs": 114.0, + "relativeCreated": 8988.971647, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:07,114", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.1140661, + "msecs": 114.0, + "relativeCreated": 8988.875514, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): 2 ()", + "asctime": "2025-08-22 20:54:07,114" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.1141207, + "msecs": 114.0, + "relativeCreated": 8988.92997, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): result = 2 ()", + "asctime": "2025-08-22 20:54:07,114" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.floor_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.215515, + "msecs": 215.0, + "relativeCreated": 9090.323988, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.floor_light) to 4", + "asctime": "2025-08-22 20:54:07,215", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.1143322, + "msecs": 114.0, + "relativeCreated": 8989.141283, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:07,114" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.114585, + "msecs": 114.0, + "relativeCreated": 8989.39394, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:07,114" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.1147196, + "msecs": 114.0, + "relativeCreated": 8989.528958, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:07,114" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.1148255, + "msecs": 114.0, + "relativeCreated": 8989.634664, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:07,114" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.1149285, + "msecs": 114.0, + "relativeCreated": 8989.73751, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:07,114" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.115057, + "msecs": 115.0, + "relativeCreated": 8989.866237, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:07,115" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.1158922, + "msecs": 115.0, + "relativeCreated": 8990.701417, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:07,115" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.1162312, + "msecs": 116.0, + "relativeCreated": 8991.040343, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:07,116" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.1573174, + "msecs": 157.0, + "relativeCreated": 9032.126667, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:07,157" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.157692, + "msecs": 157.0, + "relativeCreated": 9032.501119, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:07,157" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.1579127, + "msecs": 157.0, + "relativeCreated": 9032.722073, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:07,157" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.1581085, + "msecs": 158.0, + "relativeCreated": 9032.917606, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:07,158" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.1583433, + "msecs": 158.0, + "relativeCreated": 9033.152642, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:07,158" + } + ], + "time_consumption": 0.05717158317565918 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.2159019, + "msecs": 215.0, + "relativeCreated": 9090.711215, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:07,215", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.2157745, + "msecs": 215.0, + "relativeCreated": 9090.583671, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): 4 ()", + "asctime": "2025-08-22 20:54:07,215" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.2158585, + "msecs": 215.0, + "relativeCreated": 9090.66779, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): result = 4 ()", + "asctime": "2025-08-22 20:54:07,215" + } + ], + "time_consumption": 4.3392181396484375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.floor_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.317256, + "msecs": 317.0, + "relativeCreated": 9192.065132, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.floor_light) to 6", + "asctime": "2025-08-22 20:54:07,317", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.2160788, + "msecs": 216.0, + "relativeCreated": 9090.888022, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:07,216" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.2163348, + "msecs": 216.0, + "relativeCreated": 9091.14412, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:07,216" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.2164636, + "msecs": 216.0, + "relativeCreated": 9091.272903, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:07,216" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.2165718, + "msecs": 216.0, + "relativeCreated": 9091.381126, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:07,216" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.21669, + "msecs": 216.0, + "relativeCreated": 9091.499538, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:07,216" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.216803, + "msecs": 216.0, + "relativeCreated": 9091.612349, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:07,216" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.217737, + "msecs": 217.0, + "relativeCreated": 9092.546169, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:07,217" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.218066, + "msecs": 218.0, + "relativeCreated": 9092.875244, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:07,218" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.2583368, + "msecs": 258.0, + "relativeCreated": 9133.146114, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:07,258" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.2587187, + "msecs": 258.0, + "relativeCreated": 9133.527829, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:07,258" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.2589426, + "msecs": 258.0, + "relativeCreated": 9133.75203, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:07,258" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.2591617, + "msecs": 259.0, + "relativeCreated": 9133.970817, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:07,259" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.2593653, + "msecs": 259.0, + "relativeCreated": 9134.174687, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:07,259" + } + ], + "time_consumption": 0.05789065361022949 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.3176033, + "msecs": 317.0, + "relativeCreated": 9192.412443, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:07,317", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.3175051, + "msecs": 317.0, + "relativeCreated": 9192.314239, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): 6 ()", + "asctime": "2025-08-22 20:54:07,317" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.3175616, + "msecs": 317.0, + "relativeCreated": 9192.370902, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): result = 6 ()", + "asctime": "2025-08-22 20:54:07,317" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.floor_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.4189732, + "msecs": 418.0, + "relativeCreated": 9293.782407, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.floor_light) to 8", + "asctime": "2025-08-22 20:54:07,418", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.3178246, + "msecs": 317.0, + "relativeCreated": 9192.633829, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:07,317" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.318086, + "msecs": 318.0, + "relativeCreated": 9192.895188, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:07,318" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.318209, + "msecs": 318.0, + "relativeCreated": 9193.018243, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:07,318" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.3183143, + "msecs": 318.0, + "relativeCreated": 9193.12339, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:07,318" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.3184214, + "msecs": 318.0, + "relativeCreated": 9193.230549, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:07,318" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.3185265, + "msecs": 318.0, + "relativeCreated": 9193.335753, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:07,318" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.3193247, + "msecs": 319.0, + "relativeCreated": 9194.13381, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:07,319" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.3196337, + "msecs": 319.0, + "relativeCreated": 9194.442873, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:07,319" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.3601744, + "msecs": 360.0, + "relativeCreated": 9234.983627, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:07,360" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.3605285, + "msecs": 360.0, + "relativeCreated": 9235.337711, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:07,360" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.3607786, + "msecs": 360.0, + "relativeCreated": 9235.587689, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:07,360" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.360977, + "msecs": 360.0, + "relativeCreated": 9235.786093, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:07,360" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.3611786, + "msecs": 361.0, + "relativeCreated": 9235.987894, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:07,361" + } + ], + "time_consumption": 0.05779457092285156 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.4193192, + "msecs": 419.0, + "relativeCreated": 9294.128298, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:07,419", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.419195, + "msecs": 419.0, + "relativeCreated": 9294.00419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): 8 ()", + "asctime": "2025-08-22 20:54:07,419" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.4192755, + "msecs": 419.0, + "relativeCreated": 9294.084807, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): result = 8 ()", + "asctime": "2025-08-22 20:54:07,419" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.livingroom.floor_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.5207646, + "msecs": 520.0, + "relativeCreated": 9395.573779, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.livingroom.floor_light) to 10", + "asctime": "2025-08-22 20:54:07,520", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.4194932, + "msecs": 419.0, + "relativeCreated": 9294.302309, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:07,419" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.4197924, + "msecs": 419.0, + "relativeCreated": 9294.601684, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:07,419" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.4199202, + "msecs": 419.0, + "relativeCreated": 9294.729366, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:07,419" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.4200404, + "msecs": 420.0, + "relativeCreated": 9294.849739, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:07,420" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.420157, + "msecs": 420.0, + "relativeCreated": 9294.966217, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:07,420" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.4202588, + "msecs": 420.0, + "relativeCreated": 9295.06803, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:07,420" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_1", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.4210277, + "msecs": 421.0, + "relativeCreated": 9295.83683, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:07,421" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_2", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.4213376, + "msecs": 421.0, + "relativeCreated": 9296.146777, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:07,421" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_3", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.4621725, + "msecs": 462.0, + "relativeCreated": 9336.981774, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_3 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:07,462" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_4", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.462529, + "msecs": 462.0, + "relativeCreated": 9337.338186, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_4 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:07,462" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_5", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.4627683, + "msecs": 462.0, + "relativeCreated": 9337.577597, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_5 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:07,462" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.floor_light_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/floor_light_6", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.4629793, + "msecs": 462.0, + "relativeCreated": 9337.788444, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/floor_light_6 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:07,462" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.463233, + "msecs": 463.0, + "relativeCreated": 9338.042272, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:07,463" + } + ], + "time_consumption": 0.05753159523010254 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.521077, + "msecs": 521.0, + "relativeCreated": 9395.886264, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:07,521", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.5209823, + "msecs": 520.0, + "relativeCreated": 9395.791546, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): 10 ()", + "asctime": "2025-08-22 20:54:07,520" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.5210354, + "msecs": 521.0, + "relativeCreated": 9395.844669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.livingroom.floorlamp)): result = 10 ()", + "asctime": "2025-08-22 20:54:07,521" + } + ], + "time_consumption": 4.1484832763671875e-05 + } + ], + "time_consumption": 0.8119266033172607, + "time_start": "2025-08-22 20:54:06,709", + "time_finished": "2025-08-22 20:54:07,521" + }, + "ViDevHeating.temp_setp (ffe.livingroom.heating_valve) -> HeatingValve.temp_setp (ffe.livingroom.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (ffe.livingroom.heating_valve) -> HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888847.5213225, + "msecs": 521.0, + "relativeCreated": 9396.131808, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (ffe.livingroom.heating_valve) -> HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "asctime": "2025-08-22 20:54:07,521", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888847.621992, + "msecs": 621.0, + "relativeCreated": 9496.801547, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:07,621", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.5214667, + "msecs": 521.0, + "relativeCreated": 9396.275812, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:07,521" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.521773, + "msecs": 521.0, + "relativeCreated": 9396.582369, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:07,521" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.5632386, + "msecs": 563.0, + "relativeCreated": 9438.047836, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:07,563" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.576269, + "msecs": 576.0, + "relativeCreated": 9451.077959, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:07,576" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.5765934, + "msecs": 576.0, + "relativeCreated": 9451.402765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:07,576" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.5768409, + "msecs": 576.0, + "relativeCreated": 9451.650218, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:07,576" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.5771146, + "msecs": 577.0, + "relativeCreated": 9451.923854, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:07,577" + } + ], + "time_consumption": 0.04487752914428711 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.6222901, + "msecs": 622.0, + "relativeCreated": 9497.099419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:07,622", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.6221883, + "msecs": 622.0, + "relativeCreated": 9496.99754, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:07,622" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.6222522, + "msecs": 622.0, + "relativeCreated": 9497.061594, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:07,622" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.livingroom.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.7228527, + "msecs": 722.0, + "relativeCreated": 9597.661956, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.livingroom.heating_valve) to 15", + "asctime": "2025-08-22 20:54:07,722", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.6223884, + "msecs": 622.0, + "relativeCreated": 9497.197783, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:07,622" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.6286979, + "msecs": 628.0, + "relativeCreated": 9503.507037, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:07,628" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.6289036, + "msecs": 628.0, + "relativeCreated": 9503.712792, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:07,628" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/valve_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.6291687, + "msecs": 629.0, + "relativeCreated": 9503.977868, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:07,629" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.629482, + "msecs": 629.0, + "relativeCreated": 9504.291134, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:07,629" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.6297498, + "msecs": 629.0, + "relativeCreated": 9504.558874, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:07,629" + } + ], + "time_consumption": 0.09310293197631836 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.7232184, + "msecs": 723.0, + "relativeCreated": 9598.027547, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:07,723", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.7230902, + "msecs": 723.0, + "relativeCreated": 9597.899503, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:07,723" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.7231743, + "msecs": 723.0, + "relativeCreated": 9597.98372, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:07,723" + } + ], + "time_consumption": 4.410743713378906e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.livingroom.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.8237462, + "msecs": 823.0, + "relativeCreated": 9698.555651, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.livingroom.heating_valve) to 20", + "asctime": "2025-08-22 20:54:07,823", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.7233346, + "msecs": 723.0, + "relativeCreated": 9598.144002, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:07,723" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.7306101, + "msecs": 730.0, + "relativeCreated": 9605.419328, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:07,730" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.7308805, + "msecs": 730.0, + "relativeCreated": 9605.68977, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:07,730" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.7312026, + "msecs": 731.0, + "relativeCreated": 9606.011809, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:07,731" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.7315683, + "msecs": 731.0, + "relativeCreated": 9606.377675, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:07,731" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.7318633, + "msecs": 731.0, + "relativeCreated": 9606.672469, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:07,731" + } + ], + "time_consumption": 0.09188294410705566 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.8240743, + "msecs": 824.0, + "relativeCreated": 9698.883399, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:07,824", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.8239622, + "msecs": 823.0, + "relativeCreated": 9698.771219, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:07,823" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.8240356, + "msecs": 824.0, + "relativeCreated": 9698.844792, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:07,824" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.livingroom.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888847.924523, + "msecs": 924.0, + "relativeCreated": 9799.332174, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.livingroom.heating_valve) to 25", + "asctime": "2025-08-22 20:54:07,924", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.8241804, + "msecs": 824.0, + "relativeCreated": 9698.98961, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:07,824" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.8315396, + "msecs": 831.0, + "relativeCreated": 9706.348877, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:07,831" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.831853, + "msecs": 831.0, + "relativeCreated": 9706.662026, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:07,831" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.8321507, + "msecs": 832.0, + "relativeCreated": 9706.959899, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:07,832" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.8324764, + "msecs": 832.0, + "relativeCreated": 9707.285606, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:07,832" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.8327496, + "msecs": 832.0, + "relativeCreated": 9707.558903, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:07,832" + } + ], + "time_consumption": 0.09177350997924805 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888847.9248514, + "msecs": 924.0, + "relativeCreated": 9799.660809, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:07,924", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888847.9247668, + "msecs": 924.0, + "relativeCreated": 9799.575893, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:07,924" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888847.9248157, + "msecs": 924.0, + "relativeCreated": 9799.624947, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:07,924" + } + ], + "time_consumption": 3.5762786865234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.livingroom.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888848.025317, + "msecs": 25.0, + "relativeCreated": 9900.126123, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.livingroom.heating_valve) to 30", + "asctime": "2025-08-22 20:54:08,025", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.924949, + "msecs": 924.0, + "relativeCreated": 9799.758318, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:07,924" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.93141, + "msecs": 931.0, + "relativeCreated": 9806.219367, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:07,931" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888847.931639, + "msecs": 931.0, + "relativeCreated": 9806.448191, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:07,931" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.931954, + "msecs": 931.0, + "relativeCreated": 9806.763146, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:07,931" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.9322913, + "msecs": 932.0, + "relativeCreated": 9807.100548, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/livingroom/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:07,932" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888847.9325676, + "msecs": 932.0, + "relativeCreated": 9807.376829, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:07,932" + } + ], + "time_consumption": 0.09274935722351074 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.0256515, + "msecs": 25.0, + "relativeCreated": 9900.46069, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:08,025", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.0255587, + "msecs": 25.0, + "relativeCreated": 9900.367892, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:08,025" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.0256124, + "msecs": 25.0, + "relativeCreated": 9900.421523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.livingroom.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:08,025" + } + ], + "time_consumption": 3.910064697265625e-05 + } + ], + "time_consumption": 0.5043289661407471, + "time_start": "2025-08-22 20:54:07,521", + "time_finished": "2025-08-22 20:54:08,025" + }, + "ViDevLight.state (ffe.sleep.main_light) -> Shelly.relay/0 (ffe.sleep.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.sleep.main_light) -> Shelly.relay/0 (ffe.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888848.0258744, + "msecs": 25.0, + "relativeCreated": 9900.683648, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.sleep.main_light) -> Shelly.relay/0 (ffe.sleep.main_light)", + "asctime": "2025-08-22 20:54:08,025", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888848.1265252, + "msecs": 126.0, + "relativeCreated": 10001.334328, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:08,126", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.0260034, + "msecs": 26.0, + "relativeCreated": 9900.812768, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:08,026" + } + ], + "time_consumption": 0.10052180290222168 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.1269581, + "msecs": 126.0, + "relativeCreated": 10001.767245, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:08,126", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.1268091, + "msecs": 126.0, + "relativeCreated": 10001.618338, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:08,126" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.12689, + "msecs": 126.0, + "relativeCreated": 10001.699192, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:08,126" + } + ], + "time_consumption": 6.818771362304688e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.sleep.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888848.227468, + "msecs": 227.0, + "relativeCreated": 10102.277385, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.sleep.main_light) to True", + "asctime": "2025-08-22 20:54:08,227", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.1270769, + "msecs": 127.0, + "relativeCreated": 10001.886138, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:08,127" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.129608, + "msecs": 129.0, + "relativeCreated": 10004.417136, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:08,129" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.1298773, + "msecs": 129.0, + "relativeCreated": 10004.686469, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:08,129" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.130121, + "msecs": 130.0, + "relativeCreated": 10004.930141, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:08,130" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.1309903, + "msecs": 130.0, + "relativeCreated": 10005.799682, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:08,130" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.1313405, + "msecs": 131.0, + "relativeCreated": 10006.149766, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:08,131" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.2144454, + "msecs": 214.0, + "relativeCreated": 10089.25464, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:08,214" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.2148554, + "msecs": 214.0, + "relativeCreated": 10089.66459, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:08,214" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.2151146, + "msecs": 215.0, + "relativeCreated": 10089.923671, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5'", + "asctime": "2025-08-22 20:54:08,215" + } + ], + "time_consumption": 0.01235342025756836 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.2277968, + "msecs": 227.0, + "relativeCreated": 10102.606061, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.sleep.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:08,227", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.sleep.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.2276998, + "msecs": 227.0, + "relativeCreated": 10102.508926, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.sleep.main_light)): True ()", + "asctime": "2025-08-22 20:54:08,227" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.sleep.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.2277553, + "msecs": 227.0, + "relativeCreated": 10102.564574, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.sleep.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:08,227" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.sleep.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888848.3283975, + "msecs": 328.0, + "relativeCreated": 10203.20669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.sleep.main_light) to False", + "asctime": "2025-08-22 20:54:08,328", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.227903, + "msecs": 227.0, + "relativeCreated": 10102.71222, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:08,227" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.2299612, + "msecs": 229.0, + "relativeCreated": 10104.770422, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:08,229" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.2301698, + "msecs": 230.0, + "relativeCreated": 10104.979211, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:08,230" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.230907, + "msecs": 230.0, + "relativeCreated": 10105.716131, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:08,230" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.3133209, + "msecs": 313.0, + "relativeCreated": 10188.130122, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:08,313" + } + ], + "time_consumption": 0.015076637268066406 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.3287597, + "msecs": 328.0, + "relativeCreated": 10203.568736, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.sleep.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:08,328", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.sleep.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.3286114, + "msecs": 328.0, + "relativeCreated": 10203.420613, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.sleep.main_light)): False ()", + "asctime": "2025-08-22 20:54:08,328" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.sleep.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.3287187, + "msecs": 328.0, + "relativeCreated": 10203.527758, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.sleep.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:08,328" + } + ], + "time_consumption": 4.100799560546875e-05 + } + ], + "time_consumption": 0.3028852939605713, + "time_start": "2025-08-22 20:54:08,025", + "time_finished": "2025-08-22 20:54:08,328" + }, + "Shelly.relay/0 (ffe.sleep.main_light) -> ViDevLight.state (ffe.sleep.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffe.sleep.main_light) -> ViDevLight.state (ffe.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888848.3289552, + "msecs": 328.0, + "relativeCreated": 10203.764455, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffe.sleep.main_light) -> ViDevLight.state (ffe.sleep.main_light)", + "asctime": "2025-08-22 20:54:08,328", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888848.4295793, + "msecs": 429.0, + "relativeCreated": 10304.388566, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:08,429", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.3290915, + "msecs": 329.0, + "relativeCreated": 10203.900861, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:08,329" + } + ], + "time_consumption": 0.10048770904541016 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.4300158, + "msecs": 430.0, + "relativeCreated": 10304.824953, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:08,430", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.4298565, + "msecs": 429.0, + "relativeCreated": 10304.665792, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:08,429" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.4299686, + "msecs": 429.0, + "relativeCreated": 10304.77798, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:08,429" + } + ], + "time_consumption": 4.7206878662109375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.sleep.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888848.5308678, + "msecs": 530.0, + "relativeCreated": 10405.677029, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.sleep.main_light) to True", + "asctime": "2025-08-22 20:54:08,530", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.4301445, + "msecs": 430.0, + "relativeCreated": 10304.953799, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:08,430" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.4304466, + "msecs": 430.0, + "relativeCreated": 10305.255766, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:08,430" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.4312255, + "msecs": 431.0, + "relativeCreated": 10306.034891, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:08,431" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.473134, + "msecs": 473.0, + "relativeCreated": 10347.943403, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:08,473" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.4741201, + "msecs": 474.0, + "relativeCreated": 10348.929433, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:08,474" + } + ], + "time_consumption": 0.0567476749420166 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.5311968, + "msecs": 531.0, + "relativeCreated": 10406.006163, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.sleep.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:08,531", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.5310836, + "msecs": 531.0, + "relativeCreated": 10405.892653, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.sleep.main_light)): True ()", + "asctime": "2025-08-22 20:54:08,531" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.5311582, + "msecs": 531.0, + "relativeCreated": 10405.967556, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.sleep.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:08,531" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.sleep.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888848.63173, + "msecs": 631.0, + "relativeCreated": 10506.539318, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.sleep.main_light) to False", + "asctime": "2025-08-22 20:54:08,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", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.5313053, + "msecs": 531.0, + "relativeCreated": 10406.114522, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:08,531" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.5323634, + "msecs": 532.0, + "relativeCreated": 10407.172855, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:08,532" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.5340724, + "msecs": 534.0, + "relativeCreated": 10408.881497, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:08,534" + } + ], + "time_consumption": 0.09765768051147461 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.632055, + "msecs": 632.0, + "relativeCreated": 10506.864322, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.sleep.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:08,632", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.6319542, + "msecs": 631.0, + "relativeCreated": 10506.763318, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.sleep.main_light)): False ()", + "asctime": "2025-08-22 20:54:08,631" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.6320128, + "msecs": 632.0, + "relativeCreated": 10506.822067, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.sleep.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:08,632" + } + ], + "time_consumption": 4.220008850097656e-05 + } + ], + "time_consumption": 0.3030998706817627, + "time_start": "2025-08-22 20:54:08,328", + "time_finished": "2025-08-22 20:54:08,632" + }, + "ViDevLight.state (ffe.sleep.bed_light_di) -> Light.state (ffe.sleep.bed_light_di)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.sleep.bed_light_di) -> Light.state (ffe.sleep.bed_light_di)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888848.6322637, + "msecs": 632.0, + "relativeCreated": 10507.072911, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.sleep.bed_light_di) -> Light.state (ffe.sleep.bed_light_di)", + "asctime": "2025-08-22 20:54:08,632", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888848.7328987, + "msecs": 732.0, + "relativeCreated": 10607.70804, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:08,732", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.6324325, + "msecs": 632.0, + "relativeCreated": 10507.241657, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", + "asctime": "2025-08-22 20:54:08,632" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.6345236, + "msecs": 634.0, + "relativeCreated": 10509.332791, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:08,634" + } + ], + "time_consumption": 0.09837508201599121 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.7332692, + "msecs": 733.0, + "relativeCreated": 10608.07842, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:08,733", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.73314, + "msecs": 733.0, + "relativeCreated": 10607.949128, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:08,733" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.7332249, + "msecs": 733.0, + "relativeCreated": 10608.034096, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:08,733" + } + ], + "time_consumption": 4.4345855712890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.sleep.bed_light_di)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888848.833883, + "msecs": 833.0, + "relativeCreated": 10708.692299, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.sleep.bed_light_di) to True", + "asctime": "2025-08-22 20:54:08,833", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.7333868, + "msecs": 733.0, + "relativeCreated": 10608.196105, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload true", + "asctime": "2025-08-22 20:54:08,733" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.7357843, + "msecs": 735.0, + "relativeCreated": 10610.593456, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:08,735" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.7360775, + "msecs": 736.0, + "relativeCreated": 10610.886708, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:08,736" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.7367895, + "msecs": 736.0, + "relativeCreated": 10611.598654, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:08,736" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.819535, + "msecs": 819.0, + "relativeCreated": 10694.344432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", + "asctime": "2025-08-22 20:54:08,819" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.8199432, + "msecs": 819.0, + "relativeCreated": 10694.752389, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:08,819" + } + ], + "time_consumption": 0.013939857482910156 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.8342335, + "msecs": 834.0, + "relativeCreated": 10709.04284, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (ffe.sleep.bed_light_di) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:08,834", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (ffe.sleep.bed_light_di)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.8340986, + "msecs": 834.0, + "relativeCreated": 10708.908006, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (ffe.sleep.bed_light_di)): True ()", + "asctime": "2025-08-22 20:54:08,834" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (ffe.sleep.bed_light_di)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.8341932, + "msecs": 834.0, + "relativeCreated": 10709.002488, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (ffe.sleep.bed_light_di)): result = True ()", + "asctime": "2025-08-22 20:54:08,834" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.sleep.bed_light_di)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888848.9348245, + "msecs": 934.0, + "relativeCreated": 10809.633789, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.sleep.bed_light_di) to False", + "asctime": "2025-08-22 20:54:08,934", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.8343399, + "msecs": 834.0, + "relativeCreated": 10709.148968, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", + "asctime": "2025-08-22 20:54:08,834" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.8367486, + "msecs": 836.0, + "relativeCreated": 10711.557832, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:08,836" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"off\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.8369787, + "msecs": 836.0, + "relativeCreated": 10711.78802, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:08,836" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"off\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.837762, + "msecs": 837.0, + "relativeCreated": 10712.571355, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:08,837" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888848.9195025, + "msecs": 919.0, + "relativeCreated": 10794.31183, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", + "asctime": "2025-08-22 20:54:08,919" + } + ], + "time_consumption": 0.015321969985961914 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888848.9351308, + "msecs": 935.0, + "relativeCreated": 10809.940241, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (ffe.sleep.bed_light_di) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:08,935", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (ffe.sleep.bed_light_di)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888848.9350414, + "msecs": 935.0, + "relativeCreated": 10809.850672, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (ffe.sleep.bed_light_di)): False ()", + "asctime": "2025-08-22 20:54:08,935" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (ffe.sleep.bed_light_di)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888848.9350924, + "msecs": 935.0, + "relativeCreated": 10809.901655, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (ffe.sleep.bed_light_di)): result = False ()", + "asctime": "2025-08-22 20:54:08,935" + } + ], + "time_consumption": 3.838539123535156e-05 + } + ], + "time_consumption": 0.30286717414855957, + "time_start": "2025-08-22 20:54:08,632", + "time_finished": "2025-08-22 20:54:08,935" + }, + "Light.state (ffe.sleep.bed_light_di) -> ViDevLight.state (ffe.sleep.bed_light_di)": { + "name": "__tLogger__", + "msg": "Light.state (ffe.sleep.bed_light_di) -> ViDevLight.state (ffe.sleep.bed_light_di)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888848.9353554, + "msecs": 935.0, + "relativeCreated": 10810.164646, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.state (ffe.sleep.bed_light_di) -> ViDevLight.state (ffe.sleep.bed_light_di)", + "asctime": "2025-08-22 20:54:08,935", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888849.0360012, + "msecs": 36.0, + "relativeCreated": 10910.810622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:09,036", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888848.9354744, + "msecs": 935.0, + "relativeCreated": 10810.283775, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", + "asctime": "2025-08-22 20:54:08,935" + } + ], + "time_consumption": 0.10052680969238281 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.0363638, + "msecs": 36.0, + "relativeCreated": 10911.173054, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:09,036", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.036244, + "msecs": 36.0, + "relativeCreated": 10911.053206, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:09,036" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.0363088, + "msecs": 36.0, + "relativeCreated": 10911.11797, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:09,036" + } + ], + "time_consumption": 5.507469177246094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.state (ffe.sleep.bed_light_di)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888849.1370811, + "msecs": 137.0, + "relativeCreated": 11011.890286, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.state (ffe.sleep.bed_light_di) to True", + "asctime": "2025-08-22 20:54:09,137", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.0365489, + "msecs": 36.0, + "relativeCreated": 10911.358097, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:09,036" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.0376914, + "msecs": 37.0, + "relativeCreated": 10912.500591, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:09,037" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.0805862, + "msecs": 80.0, + "relativeCreated": 10955.395413, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", + "asctime": "2025-08-22 20:54:09,080" + } + ], + "time_consumption": 0.056494951248168945 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.137411, + "msecs": 137.0, + "relativeCreated": 11012.22022, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.sleep.bed_light_di) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:09,137", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_di)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.1372952, + "msecs": 137.0, + "relativeCreated": 11012.104487, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.sleep.bed_light_di)): True ()", + "asctime": "2025-08-22 20:54:09,137" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_di)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.1373725, + "msecs": 137.0, + "relativeCreated": 11012.181524, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.sleep.bed_light_di)): result = True ()", + "asctime": "2025-08-22 20:54:09,137" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.state (ffe.sleep.bed_light_di)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888849.2381315, + "msecs": 238.0, + "relativeCreated": 11112.940712, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.state (ffe.sleep.bed_light_di) to False", + "asctime": "2025-08-22 20:54:09,238", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"off\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.1375706, + "msecs": 137.0, + "relativeCreated": 11012.379795, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:09,137" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"off\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.1388042, + "msecs": 138.0, + "relativeCreated": 11013.613469, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:09,138" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.1408617, + "msecs": 140.0, + "relativeCreated": 11015.670814, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", + "asctime": "2025-08-22 20:54:09,140" + } + ], + "time_consumption": 0.09726977348327637 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.2384858, + "msecs": 238.0, + "relativeCreated": 11113.295121, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.sleep.bed_light_di) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:09,238", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_di)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.2383611, + "msecs": 238.0, + "relativeCreated": 11113.170294, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.sleep.bed_light_di)): False ()", + "asctime": "2025-08-22 20:54:09,238" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_di)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.2384436, + "msecs": 238.0, + "relativeCreated": 11113.252669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.sleep.bed_light_di)): result = False ()", + "asctime": "2025-08-22 20:54:09,238" + } + ], + "time_consumption": 4.220008850097656e-05 + } + ], + "time_consumption": 0.3031303882598877, + "time_start": "2025-08-22 20:54:08,935", + "time_finished": "2025-08-22 20:54:09,238" + }, + "ViDevLight.state (ffe.sleep.bed_light_ma) -> Powerplug1P.state (ffe.sleep.bed_light_ma)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.sleep.bed_light_ma) -> Powerplug1P.state (ffe.sleep.bed_light_ma)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888849.2387402, + "msecs": 238.0, + "relativeCreated": 11113.549437, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.sleep.bed_light_ma) -> Powerplug1P.state (ffe.sleep.bed_light_ma)", + "asctime": "2025-08-22 20:54:09,238", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888849.3392346, + "msecs": 339.0, + "relativeCreated": 11214.043673, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:09,339", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.2388878, + "msecs": 238.0, + "relativeCreated": 11113.697028, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", + "asctime": "2025-08-22 20:54:09,238" + } + ], + "time_consumption": 0.10034680366516113 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.3395946, + "msecs": 339.0, + "relativeCreated": 11214.403618, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:09,339", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.3394885, + "msecs": 339.0, + "relativeCreated": 11214.297788, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:09,339" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.3395512, + "msecs": 339.0, + "relativeCreated": 11214.360514, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:09,339" + } + ], + "time_consumption": 4.3392181396484375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.sleep.bed_light_ma)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888849.4402237, + "msecs": 440.0, + "relativeCreated": 11315.033026, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.sleep.bed_light_ma) to True", + "asctime": "2025-08-22 20:54:09,440", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.3397276, + "msecs": 339.0, + "relativeCreated": 11214.536864, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload true", + "asctime": "2025-08-22 20:54:09,339" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.3421154, + "msecs": 342.0, + "relativeCreated": 11216.924512, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:09,342" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.342352, + "msecs": 342.0, + "relativeCreated": 11217.161143, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:09,342" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.3430607, + "msecs": 343.0, + "relativeCreated": 11217.870054, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:09,343" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.3848374, + "msecs": 384.0, + "relativeCreated": 11259.646536, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", + "asctime": "2025-08-22 20:54:09,384" + } + ], + "time_consumption": 0.05538630485534668 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.sleep.bed_light_ma) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.4405577, + "msecs": 440.0, + "relativeCreated": 11315.367029, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.sleep.bed_light_ma) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:09,440", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.sleep.bed_light_ma)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.4404387, + "msecs": 440.0, + "relativeCreated": 11315.248009, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.sleep.bed_light_ma)): True ()", + "asctime": "2025-08-22 20:54:09,440" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.sleep.bed_light_ma)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.440517, + "msecs": 440.0, + "relativeCreated": 11315.326035, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.sleep.bed_light_ma)): result = True ()", + "asctime": "2025-08-22 20:54:09,440" + } + ], + "time_consumption": 4.076957702636719e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.sleep.bed_light_ma)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888849.5411475, + "msecs": 541.0, + "relativeCreated": 11415.956524, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.sleep.bed_light_ma) to False", + "asctime": "2025-08-22 20:54:09,541", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.4406903, + "msecs": 440.0, + "relativeCreated": 11315.499347, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", + "asctime": "2025-08-22 20:54:09,440" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.443402, + "msecs": 443.0, + "relativeCreated": 11318.211285, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:09,443" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.4436224, + "msecs": 443.0, + "relativeCreated": 11318.431741, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:09,443" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.444398, + "msecs": 444.0, + "relativeCreated": 11319.207063, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:09,444" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.4860091, + "msecs": 486.0, + "relativeCreated": 11360.818251, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", + "asctime": "2025-08-22 20:54:09,486" + } + ], + "time_consumption": 0.055138349533081055 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.sleep.bed_light_ma) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.5414543, + "msecs": 541.0, + "relativeCreated": 11416.263537, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.sleep.bed_light_ma) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:09,541", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.sleep.bed_light_ma)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.5413582, + "msecs": 541.0, + "relativeCreated": 11416.167641, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.sleep.bed_light_ma)): False ()", + "asctime": "2025-08-22 20:54:09,541" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.sleep.bed_light_ma)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.5414147, + "msecs": 541.0, + "relativeCreated": 11416.223883, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.sleep.bed_light_ma)): result = False ()", + "asctime": "2025-08-22 20:54:09,541" + } + ], + "time_consumption": 3.9577484130859375e-05 + } + ], + "time_consumption": 0.30271410942077637, + "time_start": "2025-08-22 20:54:09,238", + "time_finished": "2025-08-22 20:54:09,541" + }, + "Powerplug1P.state (ffe.sleep.bed_light_ma) -> ViDevLight.state (ffe.sleep.bed_light_ma)": { + "name": "__tLogger__", + "msg": "Powerplug1P.state (ffe.sleep.bed_light_ma) -> ViDevLight.state (ffe.sleep.bed_light_ma)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888849.541684, + "msecs": 541.0, + "relativeCreated": 11416.493096, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug1P.state (ffe.sleep.bed_light_ma) -> ViDevLight.state (ffe.sleep.bed_light_ma)", + "asctime": "2025-08-22 20:54:09,541", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888849.6422884, + "msecs": 642.0, + "relativeCreated": 11517.097711, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:09,642", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.541816, + "msecs": 541.0, + "relativeCreated": 11416.625231, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", + "asctime": "2025-08-22 20:54:09,541" + } + ], + "time_consumption": 0.10047245025634766 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.6427147, + "msecs": 642.0, + "relativeCreated": 11517.523765, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:09,642", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.6425312, + "msecs": 642.0, + "relativeCreated": 11517.340255, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:09,642" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.6426356, + "msecs": 642.0, + "relativeCreated": 11517.444768, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:09,642" + } + ], + "time_consumption": 7.915496826171875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.sleep.bed_light_ma)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888849.7433615, + "msecs": 743.0, + "relativeCreated": 11618.170651, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.sleep.bed_light_ma) to True", + "asctime": "2025-08-22 20:54:09,743", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.6428583, + "msecs": 642.0, + "relativeCreated": 11517.667484, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:09,642" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.6439524, + "msecs": 643.0, + "relativeCreated": 11518.761544, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:09,643" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.6459484, + "msecs": 645.0, + "relativeCreated": 11520.757713, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", + "asctime": "2025-08-22 20:54:09,645" + } + ], + "time_consumption": 0.0974130630493164 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.sleep.bed_light_ma) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.74375, + "msecs": 743.0, + "relativeCreated": 11618.55936, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.sleep.bed_light_ma) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:09,743", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_ma)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.7435927, + "msecs": 743.0, + "relativeCreated": 11618.401974, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.sleep.bed_light_ma)): True ()", + "asctime": "2025-08-22 20:54:09,743" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_ma)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.7436492, + "msecs": 743.0, + "relativeCreated": 11618.458449, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.sleep.bed_light_ma)): result = True ()", + "asctime": "2025-08-22 20:54:09,743" + } + ], + "time_consumption": 0.00010085105895996094 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.sleep.bed_light_ma)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888849.8443933, + "msecs": 844.0, + "relativeCreated": 11719.20248, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.sleep.bed_light_ma) to False", + "asctime": "2025-08-22 20:54:09,844", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.7438915, + "msecs": 743.0, + "relativeCreated": 11618.700613, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:09,743" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_ma", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.7449965, + "msecs": 744.0, + "relativeCreated": 11619.805901, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_ma and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:09,744" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.7465746, + "msecs": 746.0, + "relativeCreated": 11621.383932, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", + "asctime": "2025-08-22 20:54:09,746" + } + ], + "time_consumption": 0.09781861305236816 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.sleep.bed_light_ma) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888849.8447762, + "msecs": 844.0, + "relativeCreated": 11719.585315, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.sleep.bed_light_ma) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:09,844", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_ma)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888849.8446178, + "msecs": 844.0, + "relativeCreated": 11719.426876, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.sleep.bed_light_ma)): False ()", + "asctime": "2025-08-22 20:54:09,844" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.sleep.bed_light_ma)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888849.844733, + "msecs": 844.0, + "relativeCreated": 11719.542255, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.sleep.bed_light_ma)): result = False ()", + "asctime": "2025-08-22 20:54:09,844" + } + ], + "time_consumption": 4.315376281738281e-05 + } + ], + "time_consumption": 0.30309224128723145, + "time_start": "2025-08-22 20:54:09,541", + "time_finished": "2025-08-22 20:54:09,844" + }, + "ViDevLight.brightness (ffe.sleep.main_light) -> Light.brightness (ffe.sleep.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (ffe.sleep.main_light) -> Light.brightness (ffe.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888849.8449802, + "msecs": 844.0, + "relativeCreated": 11719.7894, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (ffe.sleep.main_light) -> Light.brightness (ffe.sleep.main_light)", + "asctime": "2025-08-22 20:54:09,844", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888849.9456878, + "msecs": 945.0, + "relativeCreated": 11820.496935, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:09,945", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.8451006, + "msecs": 845.0, + "relativeCreated": 11719.909742, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:09,845" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.8453915, + "msecs": 845.0, + "relativeCreated": 11720.200938, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:09,845" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.8464265, + "msecs": 846.0, + "relativeCreated": 11721.235516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:09,846" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.8468425, + "msecs": 846.0, + "relativeCreated": 11721.651938, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:09,846" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.8880963, + "msecs": 888.0, + "relativeCreated": 11762.905438, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:09,888" + } + ], + "time_consumption": 0.05759143829345703 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888850.0465944, + "msecs": 46.0, + "relativeCreated": 11921.403455, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:10,046", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.9459662, + "msecs": 945.0, + "relativeCreated": 11820.775674, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:09,945" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888849.9462647, + "msecs": 946.0, + "relativeCreated": 11821.074182, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:09,946" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.9487894, + "msecs": 948.0, + "relativeCreated": 11823.598407, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:09,948" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.9491158, + "msecs": 949.0, + "relativeCreated": 11823.924889, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:09,949" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888849.9908273, + "msecs": 990.0, + "relativeCreated": 11865.636377, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:09,990" + } + ], + "time_consumption": 0.055767059326171875 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.0469244, + "msecs": 46.0, + "relativeCreated": 11921.733526, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:10,046", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.0468316, + "msecs": 46.0, + "relativeCreated": 11921.640766, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:10,046" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.0468843, + "msecs": 46.0, + "relativeCreated": 11921.693633, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:10,046" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888850.1473966, + "msecs": 147.0, + "relativeCreated": 12022.205877, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.main_light) to 0", + "asctime": "2025-08-22 20:54:10,147", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.0470374, + "msecs": 47.0, + "relativeCreated": 11921.846561, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:10,047" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.0489998, + "msecs": 48.0, + "relativeCreated": 11923.808947, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:10,048" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.0492237, + "msecs": 49.0, + "relativeCreated": 11924.032976, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,049" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.0496824, + "msecs": 49.0, + "relativeCreated": 11924.491549, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,049" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.0917969, + "msecs": 91.0, + "relativeCreated": 11966.60613, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:10,091" + } + ], + "time_consumption": 0.05559968948364258 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.147695, + "msecs": 147.0, + "relativeCreated": 12022.504379, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:10,147", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.1476066, + "msecs": 147.0, + "relativeCreated": 12022.41575, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:10,147" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.147649, + "msecs": 147.0, + "relativeCreated": 12022.458386, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:10,147" + } + ], + "time_consumption": 4.601478576660156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888850.2481375, + "msecs": 248.0, + "relativeCreated": 12122.946611, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.main_light) to 20", + "asctime": "2025-08-22 20:54:10,248", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.1477919, + "msecs": 147.0, + "relativeCreated": 12022.601032, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:10,147" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.149501, + "msecs": 149.0, + "relativeCreated": 12024.310325, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:10,149" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.1497474, + "msecs": 149.0, + "relativeCreated": 12024.556683, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,149" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.150224, + "msecs": 150.0, + "relativeCreated": 12025.03308, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,150" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.191528, + "msecs": 191.0, + "relativeCreated": 12066.33754, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:10,191" + } + ], + "time_consumption": 0.056609392166137695 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.2484252, + "msecs": 248.0, + "relativeCreated": 12123.234375, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:10,248", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.2483292, + "msecs": 248.0, + "relativeCreated": 12123.1384, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:10,248" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.2483873, + "msecs": 248.0, + "relativeCreated": 12123.196454, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:10,248" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888850.3488312, + "msecs": 348.0, + "relativeCreated": 12223.640574, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.main_light) to 40", + "asctime": "2025-08-22 20:54:10,348", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.248525, + "msecs": 248.0, + "relativeCreated": 12123.334161, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:10,248" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.2503731, + "msecs": 250.0, + "relativeCreated": 12125.182406, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:10,250" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.2506359, + "msecs": 250.0, + "relativeCreated": 12125.444985, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,250" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.251239, + "msecs": 251.0, + "relativeCreated": 12126.048313, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,251" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.2921512, + "msecs": 292.0, + "relativeCreated": 12166.960595, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:10,292" + } + ], + "time_consumption": 0.05667996406555176 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.3491404, + "msecs": 349.0, + "relativeCreated": 12223.949758, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:10,349", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.3490276, + "msecs": 349.0, + "relativeCreated": 12223.83687, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:10,349" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.3491068, + "msecs": 349.0, + "relativeCreated": 12223.916001, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:10,349" + } + ], + "time_consumption": 3.361701965332031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888850.4495482, + "msecs": 449.0, + "relativeCreated": 12324.357494, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.main_light) to 60", + "asctime": "2025-08-22 20:54:10,449", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.349243, + "msecs": 349.0, + "relativeCreated": 12224.052045, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:10,349" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.3511517, + "msecs": 351.0, + "relativeCreated": 12225.960909, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:10,351" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.3513615, + "msecs": 351.0, + "relativeCreated": 12226.17073, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,351" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.3517938, + "msecs": 351.0, + "relativeCreated": 12226.602879, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,351" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.3933144, + "msecs": 393.0, + "relativeCreated": 12268.123653, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:10,393" + } + ], + "time_consumption": 0.056233882904052734 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.449882, + "msecs": 449.0, + "relativeCreated": 12324.691398, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:10,449", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.4497893, + "msecs": 449.0, + "relativeCreated": 12324.598412, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:10,449" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.449843, + "msecs": 449.0, + "relativeCreated": 12324.652276, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:10,449" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888850.550371, + "msecs": 550.0, + "relativeCreated": 12425.180081, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.main_light) to 80", + "asctime": "2025-08-22 20:54:10,550", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.4499888, + "msecs": 449.0, + "relativeCreated": 12324.798094, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:10,449" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.4518692, + "msecs": 451.0, + "relativeCreated": 12326.678503, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:10,451" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.452224, + "msecs": 452.0, + "relativeCreated": 12327.033136, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,452" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.45287, + "msecs": 452.0, + "relativeCreated": 12327.679047, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,452" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.494985, + "msecs": 494.0, + "relativeCreated": 12369.794355, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:10,494" + } + ], + "time_consumption": 0.05538582801818848 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.5506856, + "msecs": 550.0, + "relativeCreated": 12425.494901, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:10,550", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.5505838, + "msecs": 550.0, + "relativeCreated": 12425.393034, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:10,550" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.5506337, + "msecs": 550.0, + "relativeCreated": 12425.44307, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:10,550" + } + ], + "time_consumption": 5.1975250244140625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888850.6512291, + "msecs": 651.0, + "relativeCreated": 12526.038393, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.main_light) to 100", + "asctime": "2025-08-22 20:54:10,651", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.5508177, + "msecs": 550.0, + "relativeCreated": 12425.626986, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:10,550" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.5525877, + "msecs": 552.0, + "relativeCreated": 12427.3971, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:10,552" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.552877, + "msecs": 552.0, + "relativeCreated": 12427.686397, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,552" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.5533502, + "msecs": 553.0, + "relativeCreated": 12428.1595, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,553" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.5957038, + "msecs": 595.0, + "relativeCreated": 12470.51296, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:10,595" + } + ], + "time_consumption": 0.05552530288696289 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.6515217, + "msecs": 651.0, + "relativeCreated": 12526.330958, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:10,651", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.651426, + "msecs": 651.0, + "relativeCreated": 12526.235169, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:10,651" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.6514878, + "msecs": 651.0, + "relativeCreated": 12526.297059, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:10,651" + } + ], + "time_consumption": 3.3855438232421875e-05 + } + ], + "time_consumption": 0.8065414428710938, + "time_start": "2025-08-22 20:54:09,844", + "time_finished": "2025-08-22 20:54:10,651" + }, + "Light.brightness (ffe.sleep.main_light) -> ViDevLight.brightness (ffe.sleep.main_light)": { + "name": "__tLogger__", + "msg": "Light.brightness (ffe.sleep.main_light) -> ViDevLight.brightness (ffe.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888850.6517386, + "msecs": 651.0, + "relativeCreated": 12526.547733, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (ffe.sleep.main_light) -> ViDevLight.brightness (ffe.sleep.main_light)", + "asctime": "2025-08-22 20:54:10,651", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888850.7520764, + "msecs": 752.0, + "relativeCreated": 12626.885493, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:10,752", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888850.8529215, + "msecs": 852.0, + "relativeCreated": 12727.730923, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:10,852", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.7523756, + "msecs": 752.0, + "relativeCreated": 12627.184662, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:10,752" + } + ], + "time_consumption": 0.10054588317871094 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.8532953, + "msecs": 853.0, + "relativeCreated": 12728.104614, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:10,853", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.8531618, + "msecs": 853.0, + "relativeCreated": 12727.970879, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:10,853" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.8532488, + "msecs": 853.0, + "relativeCreated": 12728.057876, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:10,853" + } + ], + "time_consumption": 4.649162292480469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888850.9540255, + "msecs": 954.0, + "relativeCreated": 12828.834579, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.main_light) to 0", + "asctime": "2025-08-22 20:54:10,954", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.853462, + "msecs": 853.0, + "relativeCreated": 12728.27119, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,853" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.8544252, + "msecs": 854.0, + "relativeCreated": 12729.234247, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,854" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.855743, + "msecs": 855.0, + "relativeCreated": 12730.552266, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:10,855" + } + ], + "time_consumption": 0.0982825756072998 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888850.9543633, + "msecs": 954.0, + "relativeCreated": 12829.172566, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:10,954", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888850.9542456, + "msecs": 954.0, + "relativeCreated": 12829.054955, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:10,954" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888850.954323, + "msecs": 954.0, + "relativeCreated": 12829.132115, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:10,954" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.054881, + "msecs": 54.0, + "relativeCreated": 12929.690364, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.main_light) to 20", + "asctime": "2025-08-22 20:54:11,054", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888850.9545217, + "msecs": 954.0, + "relativeCreated": 12829.330724, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:10,954" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.9556828, + "msecs": 955.0, + "relativeCreated": 12830.491996, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:10,955" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888850.9569423, + "msecs": 956.0, + "relativeCreated": 12831.75153, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:10,956" + } + ], + "time_consumption": 0.09793877601623535 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.0551875, + "msecs": 55.0, + "relativeCreated": 12929.996606, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:11,055", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.055098, + "msecs": 55.0, + "relativeCreated": 12929.907247, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:11,055" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.0551517, + "msecs": 55.0, + "relativeCreated": 12929.960925, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:11,055" + } + ], + "time_consumption": 3.5762786865234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.1558385, + "msecs": 155.0, + "relativeCreated": 13030.647655, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.main_light) to 40", + "asctime": "2025-08-22 20:54:11,155", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.0553327, + "msecs": 55.0, + "relativeCreated": 12930.141833, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:11,055" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.0562198, + "msecs": 56.0, + "relativeCreated": 12931.029232, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:11,056" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.0573628, + "msecs": 57.0, + "relativeCreated": 12932.171828, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:11,057" + } + ], + "time_consumption": 0.09847569465637207 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.1561904, + "msecs": 156.0, + "relativeCreated": 13030.999587, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:11,156", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.1560667, + "msecs": 156.0, + "relativeCreated": 13030.875814, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:11,156" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.156149, + "msecs": 156.0, + "relativeCreated": 13030.958247, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:11,156" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.2568781, + "msecs": 256.0, + "relativeCreated": 13131.687416, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.main_light) to 60", + "asctime": "2025-08-22 20:54:11,256", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.1563523, + "msecs": 156.0, + "relativeCreated": 13031.16155, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:11,156" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.1575296, + "msecs": 157.0, + "relativeCreated": 13032.338844, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:11,157" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.1590445, + "msecs": 159.0, + "relativeCreated": 13033.853878, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:11,159" + } + ], + "time_consumption": 0.09783363342285156 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.2572062, + "msecs": 257.0, + "relativeCreated": 13132.01541, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:11,257", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.2571068, + "msecs": 257.0, + "relativeCreated": 13131.916043, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:11,257" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.2571638, + "msecs": 257.0, + "relativeCreated": 13131.972996, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:11,257" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.3579118, + "msecs": 357.0, + "relativeCreated": 13232.721074, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.main_light) to 80", + "asctime": "2025-08-22 20:54:11,357", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.257366, + "msecs": 257.0, + "relativeCreated": 13132.17537, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:11,257" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.2585394, + "msecs": 258.0, + "relativeCreated": 13133.348825, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:11,258" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.2599359, + "msecs": 259.0, + "relativeCreated": 13134.744952, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:11,259" + } + ], + "time_consumption": 0.0979759693145752 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.358232, + "msecs": 358.0, + "relativeCreated": 13233.041403, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:11,358", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.3581333, + "msecs": 358.0, + "relativeCreated": 13232.942559, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:11,358" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.3581903, + "msecs": 358.0, + "relativeCreated": 13232.999588, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:11,358" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.458921, + "msecs": 458.0, + "relativeCreated": 13333.730133, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.main_light) to 100", + "asctime": "2025-08-22 20:54:11,458", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.3583906, + "msecs": 358.0, + "relativeCreated": 13233.199717, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:11,358" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.3595634, + "msecs": 359.0, + "relativeCreated": 13234.372432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:11,359" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.360908, + "msecs": 360.0, + "relativeCreated": 13235.717289, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:11,360" + } + ], + "time_consumption": 0.09801292419433594 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.4592533, + "msecs": 459.0, + "relativeCreated": 13334.06261, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:11,459", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.4591339, + "msecs": 459.0, + "relativeCreated": 13333.943294, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:11,459" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.4592137, + "msecs": 459.0, + "relativeCreated": 13334.023065, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:11,459" + } + ], + "time_consumption": 3.9577484130859375e-05 + } + ], + "time_consumption": 0.8075146675109863, + "time_start": "2025-08-22 20:54:10,651", + "time_finished": "2025-08-22 20:54:11,459" + }, + "ViDevLight.color_temp (ffe.sleep.main_light) -> Light.color_temp (ffe.sleep.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.color_temp (ffe.sleep.main_light) -> Light.color_temp (ffe.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888851.4594634, + "msecs": 459.0, + "relativeCreated": 13334.272785, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.color_temp (ffe.sleep.main_light) -> Light.color_temp (ffe.sleep.main_light)", + "asctime": "2025-08-22 20:54:11,459", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888851.5598645, + "msecs": 559.0, + "relativeCreated": 13434.673712, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:11,559", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888851.6608806, + "msecs": 660.0, + "relativeCreated": 13535.689897, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:11,660", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.560179, + "msecs": 560.0, + "relativeCreated": 13434.988208, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:11,560" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.5604846, + "msecs": 560.0, + "relativeCreated": 13435.293874, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:11,560" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.5628583, + "msecs": 562.0, + "relativeCreated": 13437.667572, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:11,562" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.5632255, + "msecs": 563.0, + "relativeCreated": 13438.034758, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:11,563" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.604705, + "msecs": 604.0, + "relativeCreated": 13479.514219, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:11,604" + } + ], + "time_consumption": 0.05617547035217285 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.6612108, + "msecs": 661.0, + "relativeCreated": 13536.020146, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:11,661", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.6611137, + "msecs": 661.0, + "relativeCreated": 13535.923037, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:11,661" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.6611688, + "msecs": 661.0, + "relativeCreated": 13535.978104, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:11,661" + } + ], + "time_consumption": 4.1961669921875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.sleep.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.7618153, + "msecs": 761.0, + "relativeCreated": 13636.624595, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.sleep.main_light) to 0", + "asctime": "2025-08-22 20:54:11,761", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.6613195, + "msecs": 661.0, + "relativeCreated": 13536.128581, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 0", + "asctime": "2025-08-22 20:54:11,661" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.6633961, + "msecs": 663.0, + "relativeCreated": 13538.205326, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:11,663" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.6636512, + "msecs": 663.0, + "relativeCreated": 13538.460508, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:11,663" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.6642964, + "msecs": 664.0, + "relativeCreated": 13539.105651, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:11,664" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.7055414, + "msecs": 705.0, + "relativeCreated": 13580.350532, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:11,705" + } + ], + "time_consumption": 0.0562739372253418 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.7621102, + "msecs": 762.0, + "relativeCreated": 13636.919483, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:11,762", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.7620237, + "msecs": 762.0, + "relativeCreated": 13636.832797, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.sleep.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:11,762" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.7620728, + "msecs": 762.0, + "relativeCreated": 13636.881949, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.sleep.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:11,762" + } + ], + "time_consumption": 3.743171691894531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.sleep.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.8626916, + "msecs": 862.0, + "relativeCreated": 13737.500738, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.sleep.main_light) to 2", + "asctime": "2025-08-22 20:54:11,862", + "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", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.7622101, + "msecs": 762.0, + "relativeCreated": 13637.019372, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 2", + "asctime": "2025-08-22 20:54:11,762" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.764606, + "msecs": 764.0, + "relativeCreated": 13639.415129, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:11,764" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.764852, + "msecs": 764.0, + "relativeCreated": 13639.661108, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:11,764" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.765573, + "msecs": 765.0, + "relativeCreated": 13640.382314, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:11,765" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.8067353, + "msecs": 806.0, + "relativeCreated": 13681.54458, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:11,806" + } + ], + "time_consumption": 0.055956363677978516 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.8630245, + "msecs": 863.0, + "relativeCreated": 13737.833734, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:11,863", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.862926, + "msecs": 862.0, + "relativeCreated": 13737.73543, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.sleep.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:11,862" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.862985, + "msecs": 862.0, + "relativeCreated": 13737.794241, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.sleep.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:11,862" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.sleep.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888851.9635952, + "msecs": 963.0, + "relativeCreated": 13838.404465, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.sleep.main_light) to 4", + "asctime": "2025-08-22 20:54:11,963", + "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", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.8631291, + "msecs": 863.0, + "relativeCreated": 13737.938201, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 4", + "asctime": "2025-08-22 20:54:11,863" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.865589, + "msecs": 865.0, + "relativeCreated": 13740.398298, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:11,865" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.8658516, + "msecs": 865.0, + "relativeCreated": 13740.660854, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:11,865" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.8664632, + "msecs": 866.0, + "relativeCreated": 13741.272421, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:11,866" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.907701, + "msecs": 907.0, + "relativeCreated": 13782.510103, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:11,907" + } + ], + "time_consumption": 0.05589413642883301 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888851.963958, + "msecs": 963.0, + "relativeCreated": 13838.767125, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:11,963", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888851.9638362, + "msecs": 963.0, + "relativeCreated": 13838.645402, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.sleep.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:11,963" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888851.963912, + "msecs": 963.0, + "relativeCreated": 13838.721188, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.sleep.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:11,963" + } + ], + "time_consumption": 4.601478576660156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.sleep.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.0644205, + "msecs": 64.0, + "relativeCreated": 13939.229711, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.sleep.main_light) to 6", + "asctime": "2025-08-22 20:54:12,064", + "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", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.9640667, + "msecs": 964.0, + "relativeCreated": 13838.876142, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 6", + "asctime": "2025-08-22 20:54:11,964" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.966351, + "msecs": 966.0, + "relativeCreated": 13841.160288, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:11,966" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888851.9665773, + "msecs": 966.0, + "relativeCreated": 13841.386589, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:11,966" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888851.9679978, + "msecs": 967.0, + "relativeCreated": 13842.806935, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:11,967" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.0089657, + "msecs": 8.0, + "relativeCreated": 13883.77479, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:12,008" + } + ], + "time_consumption": 0.05545473098754883 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.064724, + "msecs": 64.0, + "relativeCreated": 13939.533083, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:12,064", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.0646253, + "msecs": 64.0, + "relativeCreated": 13939.434415, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.sleep.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:12,064" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.0646877, + "msecs": 64.0, + "relativeCreated": 13939.496773, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.sleep.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:12,064" + } + ], + "time_consumption": 3.62396240234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.sleep.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.1652086, + "msecs": 165.0, + "relativeCreated": 14040.017894, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.sleep.main_light) to 8", + "asctime": "2025-08-22 20:54:12,165", + "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", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.0648224, + "msecs": 64.0, + "relativeCreated": 13939.6317, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 8", + "asctime": "2025-08-22 20:54:12,064" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.0667658, + "msecs": 66.0, + "relativeCreated": 13941.575138, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:12,066" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.066988, + "msecs": 66.0, + "relativeCreated": 13941.797349, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:12,066" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.0674846, + "msecs": 67.0, + "relativeCreated": 13942.29399, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:12,067" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.1085696, + "msecs": 108.0, + "relativeCreated": 13983.378884, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:12,108" + } + ], + "time_consumption": 0.05663895606994629 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.1655154, + "msecs": 165.0, + "relativeCreated": 14040.324842, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:12,165", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.1654232, + "msecs": 165.0, + "relativeCreated": 14040.232259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.sleep.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:12,165" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.1654766, + "msecs": 165.0, + "relativeCreated": 14040.285916, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.sleep.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:12,165" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffe.sleep.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.2660868, + "msecs": 266.0, + "relativeCreated": 14140.896023, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffe.sleep.main_light) to 10", + "asctime": "2025-08-22 20:54:12,266", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.165621, + "msecs": 165.0, + "relativeCreated": 14040.430221, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:12,165" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.1678195, + "msecs": 167.0, + "relativeCreated": 14042.62873, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:12,167" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.1680448, + "msecs": 168.0, + "relativeCreated": 14042.85407, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:12,168" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.168612, + "msecs": 168.0, + "relativeCreated": 14043.421436, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:12,168" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.2094927, + "msecs": 209.0, + "relativeCreated": 14084.301968, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:12,209" + } + ], + "time_consumption": 0.056594133377075195 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.26642, + "msecs": 266.0, + "relativeCreated": 14141.229262, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffe.sleep.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:12,266", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.2663064, + "msecs": 266.0, + "relativeCreated": 14141.11548, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffe.sleep.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:12,266" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffe.sleep.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.2663805, + "msecs": 266.0, + "relativeCreated": 14141.189683, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffe.sleep.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:12,266" + } + ], + "time_consumption": 3.933906555175781e-05 + } + ], + "time_consumption": 0.8069565296173096, + "time_start": "2025-08-22 20:54:11,459", + "time_finished": "2025-08-22 20:54:12,266" + }, + "Light.color_temp (ffe.sleep.main_light) -> ViDevLight.color_temp (ffe.sleep.main_light)": { + "name": "__tLogger__", + "msg": "Light.color_temp (ffe.sleep.main_light) -> ViDevLight.color_temp (ffe.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888852.2666335, + "msecs": 266.0, + "relativeCreated": 14141.442591, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.color_temp (ffe.sleep.main_light) -> ViDevLight.color_temp (ffe.sleep.main_light)", + "asctime": "2025-08-22 20:54:12,266", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888852.3670404, + "msecs": 367.0, + "relativeCreated": 14241.849795, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:12,367", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888852.467861, + "msecs": 467.0, + "relativeCreated": 14342.67029, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:12,467", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.3673434, + "msecs": 367.0, + "relativeCreated": 14242.15259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:12,367" + } + ], + "time_consumption": 0.10051751136779785 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.4681787, + "msecs": 468.0, + "relativeCreated": 14342.988042, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:12,468", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.468085, + "msecs": 468.0, + "relativeCreated": 14342.894328, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:12,468" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.468139, + "msecs": 468.0, + "relativeCreated": 14342.948122, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:12,468" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.sleep.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.5688229, + "msecs": 568.0, + "relativeCreated": 14443.631964, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.sleep.main_light) to 0", + "asctime": "2025-08-22 20:54:12,568", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.468357, + "msecs": 468.0, + "relativeCreated": 14343.166249, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:12,468" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.469487, + "msecs": 469.0, + "relativeCreated": 14344.296114, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:12,469" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.4709387, + "msecs": 470.0, + "relativeCreated": 14345.747834, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:12,470" + } + ], + "time_consumption": 0.0978841781616211 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.569126, + "msecs": 569.0, + "relativeCreated": 14443.935106, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:12,569", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.5690355, + "msecs": 569.0, + "relativeCreated": 14443.844847, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.sleep.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:12,569" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.569088, + "msecs": 569.0, + "relativeCreated": 14443.897137, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.sleep.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:12,569" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.sleep.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.669769, + "msecs": 669.0, + "relativeCreated": 14544.578235, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.sleep.main_light) to 2", + "asctime": "2025-08-22 20:54:12,669", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.5692759, + "msecs": 569.0, + "relativeCreated": 14444.085223, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:12,569" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.570283, + "msecs": 570.0, + "relativeCreated": 14445.092326, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:12,570" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.5714133, + "msecs": 571.0, + "relativeCreated": 14446.222363, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:12,571" + } + ], + "time_consumption": 0.09835577011108398 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.6701, + "msecs": 670.0, + "relativeCreated": 14544.90913, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:12,670", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.6699843, + "msecs": 669.0, + "relativeCreated": 14544.793506, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.sleep.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:12,669" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.6700618, + "msecs": 670.0, + "relativeCreated": 14544.871089, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.sleep.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:12,670" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.sleep.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.7707796, + "msecs": 770.0, + "relativeCreated": 14645.588758, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.sleep.main_light) to 4", + "asctime": "2025-08-22 20:54:12,770", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.670254, + "msecs": 670.0, + "relativeCreated": 14545.063247, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:12,670" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.6714315, + "msecs": 671.0, + "relativeCreated": 14546.240545, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:12,671" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.6727443, + "msecs": 672.0, + "relativeCreated": 14547.553448, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:12,672" + } + ], + "time_consumption": 0.09803533554077148 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.771125, + "msecs": 771.0, + "relativeCreated": 14645.934313, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:12,771", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.771005, + "msecs": 771.0, + "relativeCreated": 14645.814066, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.sleep.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:12,771" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.7710826, + "msecs": 771.0, + "relativeCreated": 14645.891945, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.sleep.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:12,771" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.sleep.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.871795, + "msecs": 871.0, + "relativeCreated": 14746.604103, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.sleep.main_light) to 6", + "asctime": "2025-08-22 20:54:12,871", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.7712884, + "msecs": 771.0, + "relativeCreated": 14646.097668, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:12,771" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.772426, + "msecs": 772.0, + "relativeCreated": 14647.235303, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:12,772" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.7738109, + "msecs": 773.0, + "relativeCreated": 14648.620153, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:12,773" + } + ], + "time_consumption": 0.09798407554626465 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.8721163, + "msecs": 872.0, + "relativeCreated": 14746.925506, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:12,872", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.8720217, + "msecs": 872.0, + "relativeCreated": 14746.831047, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.sleep.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:12,872" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.872077, + "msecs": 872.0, + "relativeCreated": 14746.886315, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.sleep.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:12,872" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.sleep.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888852.9728274, + "msecs": 972.0, + "relativeCreated": 14847.636618, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.sleep.main_light) to 8", + "asctime": "2025-08-22 20:54:12,972", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.872277, + "msecs": 872.0, + "relativeCreated": 14747.086113, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:12,872" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.8734927, + "msecs": 873.0, + "relativeCreated": 14748.301898, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:12,873" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.8749936, + "msecs": 874.0, + "relativeCreated": 14749.802904, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:12,874" + } + ], + "time_consumption": 0.09783387184143066 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888852.9731562, + "msecs": 973.0, + "relativeCreated": 14847.965424, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:12,973", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888852.973055, + "msecs": 973.0, + "relativeCreated": 14847.864308, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.sleep.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:12,973" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888852.973114, + "msecs": 973.0, + "relativeCreated": 14847.923337, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.sleep.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:12,973" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffe.sleep.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888853.0738297, + "msecs": 73.0, + "relativeCreated": 14948.638947, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffe.sleep.main_light) to 10", + "asctime": "2025-08-22 20:54:13,073", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888852.9733188, + "msecs": 973.0, + "relativeCreated": 14848.128198, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:12,973" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.9743843, + "msecs": 974.0, + "relativeCreated": 14849.193518, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:12,974" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888852.9755743, + "msecs": 975.0, + "relativeCreated": 14850.383519, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:12,975" + } + ], + "time_consumption": 0.09825539588928223 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.0741644, + "msecs": 74.0, + "relativeCreated": 14948.973662, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffe.sleep.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:13,074", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.074044, + "msecs": 74.0, + "relativeCreated": 14948.853164, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffe.sleep.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:13,074" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffe.sleep.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.074119, + "msecs": 74.0, + "relativeCreated": 14948.928349, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffe.sleep.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:13,074" + } + ], + "time_consumption": 4.5299530029296875e-05 + } + ], + "time_consumption": 0.8075308799743652, + "time_start": "2025-08-22 20:54:12,266", + "time_finished": "2025-08-22 20:54:13,074" + }, + "ViDevLight.brightness (ffe.sleep.bed_light_di) -> Light.brightness (ffe.sleep.bed_light_di)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (ffe.sleep.bed_light_di) -> Light.brightness (ffe.sleep.bed_light_di)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888853.0743735, + "msecs": 74.0, + "relativeCreated": 14949.182629, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (ffe.sleep.bed_light_di) -> Light.brightness (ffe.sleep.bed_light_di)", + "asctime": "2025-08-22 20:54:13,074", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888853.175053, + "msecs": 175.0, + "relativeCreated": 15049.861997, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:13,175", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.0745325, + "msecs": 74.0, + "relativeCreated": 14949.341838, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:13,074" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.0755506, + "msecs": 75.0, + "relativeCreated": 14950.359707, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:13,075" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.0772371, + "msecs": 77.0, + "relativeCreated": 14952.046405, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", + "asctime": "2025-08-22 20:54:13,077" + } + ], + "time_consumption": 0.09781575202941895 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888853.27596, + "msecs": 275.0, + "relativeCreated": 15150.769335, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:13,275", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.175352, + "msecs": 175.0, + "relativeCreated": 15050.161416, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:13,175" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 254.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.1756892, + "msecs": 175.0, + "relativeCreated": 15050.498416, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 254.0}", + "asctime": "2025-08-22 20:54:13,175" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.1780956, + "msecs": 178.0, + "relativeCreated": 15052.904882, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:13,178" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 254.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.1784582, + "msecs": 178.0, + "relativeCreated": 15053.26731, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", + "asctime": "2025-08-22 20:54:13,178" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.2215478, + "msecs": 221.0, + "relativeCreated": 15096.357067, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:13,221" + } + ], + "time_consumption": 0.054412126541137695 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.2762897, + "msecs": 276.0, + "relativeCreated": 15151.099087, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:13,276", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.2761927, + "msecs": 276.0, + "relativeCreated": 15151.002048, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:13,276" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.2762477, + "msecs": 276.0, + "relativeCreated": 15151.05706, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:13,276" + } + ], + "time_consumption": 4.1961669921875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.bed_light_di)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888853.376908, + "msecs": 376.0, + "relativeCreated": 15251.717153, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.bed_light_di) to 0", + "asctime": "2025-08-22 20:54:13,376", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.2763965, + "msecs": 276.0, + "relativeCreated": 15151.205797, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:13,276" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.2786849, + "msecs": 278.0, + "relativeCreated": 15153.494289, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:13,278" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 1.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.278906, + "msecs": 278.0, + "relativeCreated": 15153.715341, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 1.0}", + "asctime": "2025-08-22 20:54:13,278" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 1.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.2793863, + "msecs": 279.0, + "relativeCreated": 15154.195541, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", + "asctime": "2025-08-22 20:54:13,279" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.3215146, + "msecs": 321.0, + "relativeCreated": 15196.323693, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:13,321" + } + ], + "time_consumption": 0.05539345741271973 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.3772175, + "msecs": 377.0, + "relativeCreated": 15252.02688, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:13,377", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.3771276, + "msecs": 377.0, + "relativeCreated": 15251.936899, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.bed_light_di)): 0 ()", + "asctime": "2025-08-22 20:54:13,377" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.3771791, + "msecs": 377.0, + "relativeCreated": 15251.988487, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.bed_light_di)): result = 0 ()", + "asctime": "2025-08-22 20:54:13,377" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.bed_light_di)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888853.4777396, + "msecs": 477.0, + "relativeCreated": 15352.548766, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.bed_light_di) to 20", + "asctime": "2025-08-22 20:54:13,477", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.377343, + "msecs": 377.0, + "relativeCreated": 15252.152095, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:13,377" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.3796906, + "msecs": 379.0, + "relativeCreated": 15254.500042, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:13,379" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 52.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.3799229, + "msecs": 379.0, + "relativeCreated": 15254.732285, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 52.0}", + "asctime": "2025-08-22 20:54:13,379" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 52.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.380514, + "msecs": 380.0, + "relativeCreated": 15255.322942, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", + "asctime": "2025-08-22 20:54:13,380" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.4216204, + "msecs": 421.0, + "relativeCreated": 15296.429742, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:13,421" + } + ], + "time_consumption": 0.05611920356750488 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.4780748, + "msecs": 478.0, + "relativeCreated": 15352.884142, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:13,478", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.4779575, + "msecs": 477.0, + "relativeCreated": 15352.766637, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.bed_light_di)): 20 ()", + "asctime": "2025-08-22 20:54:13,477" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.4780357, + "msecs": 478.0, + "relativeCreated": 15352.844855, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.bed_light_di)): result = 20 ()", + "asctime": "2025-08-22 20:54:13,478" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.bed_light_di)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888853.5785213, + "msecs": 578.0, + "relativeCreated": 15453.330673, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.bed_light_di) to 40", + "asctime": "2025-08-22 20:54:13,578", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.47818, + "msecs": 478.0, + "relativeCreated": 15352.989095, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:13,478" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.4805386, + "msecs": 480.0, + "relativeCreated": 15355.347941, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:13,480" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 102.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.4807806, + "msecs": 480.0, + "relativeCreated": 15355.589877, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 102.0}", + "asctime": "2025-08-22 20:54:13,480" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 102.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.4812534, + "msecs": 481.0, + "relativeCreated": 15356.062485, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", + "asctime": "2025-08-22 20:54:13,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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.5226927, + "msecs": 522.0, + "relativeCreated": 15397.501895, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:13,522" + } + ], + "time_consumption": 0.05582857131958008 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.5788355, + "msecs": 578.0, + "relativeCreated": 15453.64475, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:13,578", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.5787296, + "msecs": 578.0, + "relativeCreated": 15453.538917, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.bed_light_di)): 40 ()", + "asctime": "2025-08-22 20:54:13,578" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.5787954, + "msecs": 578.0, + "relativeCreated": 15453.604878, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.bed_light_di)): result = 40 ()", + "asctime": "2025-08-22 20:54:13,578" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.bed_light_di)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888853.6794088, + "msecs": 679.0, + "relativeCreated": 15554.218142, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.bed_light_di) to 60", + "asctime": "2025-08-22 20:54:13,679", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.5789416, + "msecs": 578.0, + "relativeCreated": 15453.750923, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:13,578" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.5807896, + "msecs": 580.0, + "relativeCreated": 15455.598741, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:13,580" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 153.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.5810206, + "msecs": 581.0, + "relativeCreated": 15455.829855, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 153.0}", + "asctime": "2025-08-22 20:54:13,581" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 153.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.58171, + "msecs": 581.0, + "relativeCreated": 15456.519397, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", + "asctime": "2025-08-22 20:54:13,581" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.6223888, + "msecs": 622.0, + "relativeCreated": 15497.197925, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:13,622" + } + ], + "time_consumption": 0.057019948959350586 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.6797783, + "msecs": 679.0, + "relativeCreated": 15554.587531, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:13,679", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.679629, + "msecs": 679.0, + "relativeCreated": 15554.438175, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.bed_light_di)): 60 ()", + "asctime": "2025-08-22 20:54:13,679" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.6797168, + "msecs": 679.0, + "relativeCreated": 15554.526002, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.bed_light_di)): result = 60 ()", + "asctime": "2025-08-22 20:54:13,679" + } + ], + "time_consumption": 6.151199340820312e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.bed_light_di)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888853.7803562, + "msecs": 780.0, + "relativeCreated": 15655.165289, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.bed_light_di) to 80", + "asctime": "2025-08-22 20:54:13,780", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.6798856, + "msecs": 679.0, + "relativeCreated": 15554.694929, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:13,679" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.682262, + "msecs": 682.0, + "relativeCreated": 15557.071138, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:13,682" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 203.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.6824832, + "msecs": 682.0, + "relativeCreated": 15557.292431, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 203.0}", + "asctime": "2025-08-22 20:54:13,682" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 203.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.6831753, + "msecs": 683.0, + "relativeCreated": 15557.984746, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", + "asctime": "2025-08-22 20:54:13,683" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.7246776, + "msecs": 724.0, + "relativeCreated": 15599.486795, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:13,724" + } + ], + "time_consumption": 0.055678606033325195 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.7806933, + "msecs": 780.0, + "relativeCreated": 15655.502592, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:13,780", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.7805743, + "msecs": 780.0, + "relativeCreated": 15655.383474, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.bed_light_di)): 80 ()", + "asctime": "2025-08-22 20:54:13,780" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.7806246, + "msecs": 780.0, + "relativeCreated": 15655.433777, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.bed_light_di)): result = 80 ()", + "asctime": "2025-08-22 20:54:13,780" + } + ], + "time_consumption": 6.866455078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffe.sleep.bed_light_di)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888853.8812535, + "msecs": 881.0, + "relativeCreated": 15756.062685, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffe.sleep.bed_light_di) to 100", + "asctime": "2025-08-22 20:54:13,881", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.7807992, + "msecs": 780.0, + "relativeCreated": 15655.608358, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:13,780" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.7828212, + "msecs": 782.0, + "relativeCreated": 15657.63032, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:13,782" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 254.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.78304, + "msecs": 783.0, + "relativeCreated": 15657.849207, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 254.0}", + "asctime": "2025-08-22 20:54:13,783" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 254.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.783621, + "msecs": 783.0, + "relativeCreated": 15658.43045, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", + "asctime": "2025-08-22 20:54:13,783" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888853.82453, + "msecs": 824.0, + "relativeCreated": 15699.339272, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:13,824" + } + ], + "time_consumption": 0.056723594665527344 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888853.8815854, + "msecs": 881.0, + "relativeCreated": 15756.394752, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffe.sleep.bed_light_di) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:13,881", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888853.8814714, + "msecs": 881.0, + "relativeCreated": 15756.280691, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffe.sleep.bed_light_di)): 100 ()", + "asctime": "2025-08-22 20:54:13,881" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffe.sleep.bed_light_di)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888853.8815455, + "msecs": 881.0, + "relativeCreated": 15756.354675, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffe.sleep.bed_light_di)): result = 100 ()", + "asctime": "2025-08-22 20:54:13,881" + } + ], + "time_consumption": 3.981590270996094e-05 + } + ], + "time_consumption": 0.8072118759155273, + "time_start": "2025-08-22 20:54:13,074", + "time_finished": "2025-08-22 20:54:13,881" + }, + "Light.brightness (ffe.sleep.bed_light_di) -> ViDevLight.brightness (ffe.sleep.bed_light_di)": { + "name": "__tLogger__", + "msg": "Light.brightness (ffe.sleep.bed_light_di) -> ViDevLight.brightness (ffe.sleep.bed_light_di)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888853.8818128, + "msecs": 881.0, + "relativeCreated": 15756.622089, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (ffe.sleep.bed_light_di) -> ViDevLight.brightness (ffe.sleep.bed_light_di)", + "asctime": "2025-08-22 20:54:13,881", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888853.9819758, + "msecs": 981.0, + "relativeCreated": 15856.785067, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:13,981", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888854.0827794, + "msecs": 82.0, + "relativeCreated": 15957.588521, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:14,082", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888853.9822783, + "msecs": 982.0, + "relativeCreated": 15857.087717, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:13,982" + } + ], + "time_consumption": 0.10050106048583984 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.0831368, + "msecs": 83.0, + "relativeCreated": 15957.946095, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:14,083", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.0830328, + "msecs": 83.0, + "relativeCreated": 15957.842162, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:14,083" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.0830944, + "msecs": 83.0, + "relativeCreated": 15957.903597, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:14,083" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.bed_light_di)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.1838276, + "msecs": 183.0, + "relativeCreated": 16058.636919, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.bed_light_di) to 0", + "asctime": "2025-08-22 20:54:14,183", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 1.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.083294, + "msecs": 83.0, + "relativeCreated": 15958.103088, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 1.0}", + "asctime": "2025-08-22 20:54:14,083" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 1.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.084483, + "msecs": 84.0, + "relativeCreated": 15959.292169, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", + "asctime": "2025-08-22 20:54:14,084" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.0856986, + "msecs": 85.0, + "relativeCreated": 15960.507868, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:14,085" + } + ], + "time_consumption": 0.0981290340423584 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.1841516, + "msecs": 184.0, + "relativeCreated": 16058.960913, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:14,184", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.1840572, + "msecs": 184.0, + "relativeCreated": 16058.866584, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): 0 ()", + "asctime": "2025-08-22 20:54:14,184" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.1841118, + "msecs": 184.0, + "relativeCreated": 16058.921004, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): result = 0 ()", + "asctime": "2025-08-22 20:54:14,184" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.bed_light_di)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.2848058, + "msecs": 284.0, + "relativeCreated": 16159.61504, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.bed_light_di) to 20", + "asctime": "2025-08-22 20:54:14,284", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 52.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.18431, + "msecs": 184.0, + "relativeCreated": 16059.119281, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 52.0}", + "asctime": "2025-08-22 20:54:14,184" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 52.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.1853507, + "msecs": 185.0, + "relativeCreated": 16060.159875, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", + "asctime": "2025-08-22 20:54:14,185" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.1865914, + "msecs": 186.0, + "relativeCreated": 16061.400732, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:14,186" + } + ], + "time_consumption": 0.09821438789367676 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.2851593, + "msecs": 285.0, + "relativeCreated": 16159.96858, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:14,285", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.2850356, + "msecs": 285.0, + "relativeCreated": 16159.844881, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): 20 ()", + "asctime": "2025-08-22 20:54:14,285" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.2851188, + "msecs": 285.0, + "relativeCreated": 16159.927834, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): result = 20 ()", + "asctime": "2025-08-22 20:54:14,285" + } + ], + "time_consumption": 4.0531158447265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.bed_light_di)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.385856, + "msecs": 385.0, + "relativeCreated": 16260.665302, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.bed_light_di) to 40", + "asctime": "2025-08-22 20:54:14,385", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 102.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.285319, + "msecs": 285.0, + "relativeCreated": 16160.128338, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 102.0}", + "asctime": "2025-08-22 20:54:14,285" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 102.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.2863631, + "msecs": 286.0, + "relativeCreated": 16161.172391, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", + "asctime": "2025-08-22 20:54:14,286" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.287672, + "msecs": 287.0, + "relativeCreated": 16162.481376, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:14,287" + } + ], + "time_consumption": 0.09818387031555176 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.3862135, + "msecs": 386.0, + "relativeCreated": 16261.022921, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:14,386", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.38609, + "msecs": 386.0, + "relativeCreated": 16260.899322, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): 40 ()", + "asctime": "2025-08-22 20:54:14,386" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.386173, + "msecs": 386.0, + "relativeCreated": 16260.982191, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): result = 40 ()", + "asctime": "2025-08-22 20:54:14,386" + } + ], + "time_consumption": 4.0531158447265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.bed_light_di)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.4868212, + "msecs": 486.0, + "relativeCreated": 16361.630265, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.bed_light_di) to 60", + "asctime": "2025-08-22 20:54:14,486", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 153.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.3863726, + "msecs": 386.0, + "relativeCreated": 16261.181731, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 153.0}", + "asctime": "2025-08-22 20:54:14,386" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 153.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.3874598, + "msecs": 387.0, + "relativeCreated": 16262.26914, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", + "asctime": "2025-08-22 20:54:14,387" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.3887682, + "msecs": 388.0, + "relativeCreated": 16263.577433, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:14,388" + } + ], + "time_consumption": 0.098052978515625 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.4871519, + "msecs": 487.0, + "relativeCreated": 16361.961198, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:14,487", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.487054, + "msecs": 487.0, + "relativeCreated": 16361.863304, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): 60 ()", + "asctime": "2025-08-22 20:54:14,487" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.4871113, + "msecs": 487.0, + "relativeCreated": 16361.920736, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): result = 60 ()", + "asctime": "2025-08-22 20:54:14,487" + } + ], + "time_consumption": 4.0531158447265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.bed_light_di)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.5878415, + "msecs": 587.0, + "relativeCreated": 16462.65065, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.bed_light_di) to 80", + "asctime": "2025-08-22 20:54:14,587", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 203.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.4873104, + "msecs": 487.0, + "relativeCreated": 16362.119506, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 203.0}", + "asctime": "2025-08-22 20:54:14,487" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 203.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.488507, + "msecs": 488.0, + "relativeCreated": 16363.316295, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", + "asctime": "2025-08-22 20:54:14,488" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.4898598, + "msecs": 489.0, + "relativeCreated": 16364.669054, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:14,489" + } + ], + "time_consumption": 0.09798169136047363 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.5881753, + "msecs": 588.0, + "relativeCreated": 16462.984659, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:14,588", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.5880759, + "msecs": 588.0, + "relativeCreated": 16462.885024, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): 80 ()", + "asctime": "2025-08-22 20:54:14,588" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.5881324, + "msecs": 588.0, + "relativeCreated": 16462.941524, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): result = 80 ()", + "asctime": "2025-08-22 20:54:14,588" + } + ], + "time_consumption": 4.291534423828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffe.sleep.bed_light_di)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.6888876, + "msecs": 688.0, + "relativeCreated": 16563.696714, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffe.sleep.bed_light_di) to 100", + "asctime": "2025-08-22 20:54:14,688", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 254.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.5883648, + "msecs": 588.0, + "relativeCreated": 16463.174018, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 254.0}", + "asctime": "2025-08-22 20:54:14,588" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 254.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.5894883, + "msecs": 589.0, + "relativeCreated": 16464.297537, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", + "asctime": "2025-08-22 20:54:14,589" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.5909433, + "msecs": 590.0, + "relativeCreated": 16465.752474, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:14,590" + } + ], + "time_consumption": 0.09794425964355469 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.6892438, + "msecs": 689.0, + "relativeCreated": 16564.053226, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffe.sleep.bed_light_di) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:14,689", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.6891165, + "msecs": 689.0, + "relativeCreated": 16563.925606, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): 100 ()", + "asctime": "2025-08-22 20:54:14,689" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffe.sleep.bed_light_di)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.6892014, + "msecs": 689.0, + "relativeCreated": 16564.010543, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffe.sleep.bed_light_di)): result = 100 ()", + "asctime": "2025-08-22 20:54:14,689" + } + ], + "time_consumption": 4.2438507080078125e-05 + } + ], + "time_consumption": 0.8074309825897217, + "time_start": "2025-08-22 20:54:13,881", + "time_finished": "2025-08-22 20:54:14,689" + }, + "ViDevHeating.temp_setp (ffe.sleep.heating_valve) -> HeatingValve.temp_setp (ffe.sleep.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (ffe.sleep.heating_valve) -> HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888854.6894722, + "msecs": 689.0, + "relativeCreated": 16564.281507, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (ffe.sleep.heating_valve) -> HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "asctime": "2025-08-22 20:54:14,689", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888854.7902555, + "msecs": 790.0, + "relativeCreated": 16665.064878, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:14,790", + "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", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.6896186, + "msecs": 689.0, + "relativeCreated": 16564.427901, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:14,689" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.689925, + "msecs": 689.0, + "relativeCreated": 16564.734022, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:14,689" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.7023246, + "msecs": 702.0, + "relativeCreated": 16577.134053, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:14,702" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.7029288, + "msecs": 702.0, + "relativeCreated": 16577.73814, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:14,702" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.7442033, + "msecs": 744.0, + "relativeCreated": 16619.012497, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:14,744" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.744652, + "msecs": 744.0, + "relativeCreated": 16619.461307, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:14,744" + } + ], + "time_consumption": 0.04560351371765137 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.79058, + "msecs": 790.0, + "relativeCreated": 16665.389268, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:14,790", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.790486, + "msecs": 790.0, + "relativeCreated": 16665.295133, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:14,790" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.790539, + "msecs": 790.0, + "relativeCreated": 16665.348219, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:14,790" + } + ], + "time_consumption": 4.100799560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.sleep.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.8911421, + "msecs": 891.0, + "relativeCreated": 16765.951286, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.sleep.heating_valve) to 15", + "asctime": "2025-08-22 20:54:14,891", + "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", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.7907138, + "msecs": 790.0, + "relativeCreated": 16665.523145, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:14,790" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.7977438, + "msecs": 797.0, + "relativeCreated": 16672.553023, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:14,797" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.797978, + "msecs": 797.0, + "relativeCreated": 16672.786986, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:14,797" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.798277, + "msecs": 798.0, + "relativeCreated": 16673.086203, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:14,798" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.798612, + "msecs": 798.0, + "relativeCreated": 16673.421562, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:14,798" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.7988827, + "msecs": 798.0, + "relativeCreated": 16673.691927, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:14,798" + } + ], + "time_consumption": 0.09225940704345703 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.8914747, + "msecs": 891.0, + "relativeCreated": 16766.283842, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:14,891", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.8913581, + "msecs": 891.0, + "relativeCreated": 16766.167363, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:14,891" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.8914359, + "msecs": 891.0, + "relativeCreated": 16766.245041, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:14,891" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.sleep.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888854.9920607, + "msecs": 992.0, + "relativeCreated": 16866.869976, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.sleep.heating_valve) to 20", + "asctime": "2025-08-22 20:54:14,992", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.8915808, + "msecs": 891.0, + "relativeCreated": 16766.390169, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:14,891" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.8992276, + "msecs": 899.0, + "relativeCreated": 16774.036979, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:14,899" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.899461, + "msecs": 899.0, + "relativeCreated": 16774.270283, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:14,899" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.899791, + "msecs": 899.0, + "relativeCreated": 16774.600227, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:14,899" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.9001224, + "msecs": 900.0, + "relativeCreated": 16774.931629, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:14,900" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.900346, + "msecs": 900.0, + "relativeCreated": 16775.155396, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:14,900" + } + ], + "time_consumption": 0.09171462059020996 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888854.9923992, + "msecs": 992.0, + "relativeCreated": 16867.208378, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:14,992", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888854.9923012, + "msecs": 992.0, + "relativeCreated": 16867.110419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:14,992" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888854.992361, + "msecs": 992.0, + "relativeCreated": 16867.170255, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:14,992" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.sleep.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888855.0929837, + "msecs": 92.0, + "relativeCreated": 16967.792925, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.sleep.heating_valve) to 25", + "asctime": "2025-08-22 20:54:15,092", + "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", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.992508, + "msecs": 992.0, + "relativeCreated": 16867.317219, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:14,992" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888854.9994783, + "msecs": 999.0, + "relativeCreated": 16874.287383, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:14,999" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888854.9997334, + "msecs": 999.0, + "relativeCreated": 16874.542835, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:14,999" + }, + { + "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'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.000039, + "msecs": 0.0, + "relativeCreated": 16874.848422, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:15,000" + }, + { + "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'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.0003874, + "msecs": 0.0, + "relativeCreated": 16875.196499, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:15,000" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.000614, + "msecs": 0.0, + "relativeCreated": 16875.423118, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:15,000" + } + ], + "time_consumption": 0.09236979484558105 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.0932982, + "msecs": 93.0, + "relativeCreated": 16968.107328, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:15,093", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.0932033, + "msecs": 93.0, + "relativeCreated": 16968.012397, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:15,093" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.0932598, + "msecs": 93.0, + "relativeCreated": 16968.069055, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:15,093" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.sleep.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888855.1937954, + "msecs": 193.0, + "relativeCreated": 17068.604622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.sleep.heating_valve) to 30", + "asctime": "2025-08-22 20:54:15,193", + "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", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.0934052, + "msecs": 93.0, + "relativeCreated": 16968.214542, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:15,093" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.1003666, + "msecs": 100.0, + "relativeCreated": 16975.175762, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:15,100" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.1005933, + "msecs": 100.0, + "relativeCreated": 16975.40271, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:15,100" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.1009278, + "msecs": 100.0, + "relativeCreated": 16975.736919, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:15,100" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.1012526, + "msecs": 101.0, + "relativeCreated": 16976.061788, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:15,101" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.101478, + "msecs": 101.0, + "relativeCreated": 16976.287447, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:15,101" + } + ], + "time_consumption": 0.09231734275817871 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.194083, + "msecs": 194.0, + "relativeCreated": 17068.892345, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:15,194", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.1939955, + "msecs": 193.0, + "relativeCreated": 17068.804865, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:15,193" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.1940458, + "msecs": 194.0, + "relativeCreated": 17068.854827, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.sleep.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:15,194" + } + ], + "time_consumption": 3.719329833984375e-05 + } + ], + "time_consumption": 0.5046107769012451, + "time_start": "2025-08-22 20:54:14,689", + "time_finished": "2025-08-22 20:54:15,194" + }, + "ViDevLight.state (ffe.diningroom.main_light) -> Shelly.relay/0 (ffe.diningroom.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.diningroom.main_light) -> Shelly.relay/0 (ffe.diningroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888855.1942935, + "msecs": 194.0, + "relativeCreated": 17069.102763, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.diningroom.main_light) -> Shelly.relay/0 (ffe.diningroom.main_light)", + "asctime": "2025-08-22 20:54:15,194", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888855.294952, + "msecs": 294.0, + "relativeCreated": 17169.761218, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:15,294", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.194436, + "msecs": 194.0, + "relativeCreated": 17069.245457, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:15,194" + } + ], + "time_consumption": 0.10051584243774414 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.295279, + "msecs": 295.0, + "relativeCreated": 17170.088335, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:15,295", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.295183, + "msecs": 295.0, + "relativeCreated": 17169.991999, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:15,295" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.2952378, + "msecs": 295.0, + "relativeCreated": 17170.047013, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:15,295" + } + ], + "time_consumption": 4.124641418457031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.diningroom.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888855.395895, + "msecs": 395.0, + "relativeCreated": 17270.704156, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.diningroom.main_light) to True", + "asctime": "2025-08-22 20:54:15,395", + "moduleLogger": [ + { + "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/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.295413, + "msecs": 295.0, + "relativeCreated": 17170.222236, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:15,295" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0/command", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.2978454, + "msecs": 297.0, + "relativeCreated": 17172.654598, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:15,297" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.2980745, + "msecs": 298.0, + "relativeCreated": 17172.883705, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:15,298" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.2986383, + "msecs": 298.0, + "relativeCreated": 17173.447451, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:15,298" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.3399043, + "msecs": 339.0, + "relativeCreated": 17214.713617, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:15,339" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.3401437, + "msecs": 340.0, + "relativeCreated": 17214.952899, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:15,340" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.3404489, + "msecs": 340.0, + "relativeCreated": 17215.258, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:15,340" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.340919, + "msecs": 340.0, + "relativeCreated": 17215.728368, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:15,340" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.3821452, + "msecs": 382.0, + "relativeCreated": 17256.954564, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:54:15,382" + } + ], + "time_consumption": 0.013749837875366211 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.diningroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.3962274, + "msecs": 396.0, + "relativeCreated": 17271.036619, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.diningroom.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:15,396", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.diningroom.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.3961124, + "msecs": 396.0, + "relativeCreated": 17270.921735, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.diningroom.main_light)): True ()", + "asctime": "2025-08-22 20:54:15,396" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.diningroom.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.396187, + "msecs": 396.0, + "relativeCreated": 17270.996322, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.diningroom.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:15,396" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.diningroom.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888855.4968612, + "msecs": 496.0, + "relativeCreated": 17371.670401, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.diningroom.main_light) to False", + "asctime": "2025-08-22 20:54:15,496", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.396341, + "msecs": 396.0, + "relativeCreated": 17271.150255, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:15,396" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.3987155, + "msecs": 398.0, + "relativeCreated": 17273.524514, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:15,398" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.398923, + "msecs": 398.0, + "relativeCreated": 17273.732198, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:15,398" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.399569, + "msecs": 399.0, + "relativeCreated": 17274.378412, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:15,399" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.4409463, + "msecs": 440.0, + "relativeCreated": 17315.755632, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:15,440" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.4411867, + "msecs": 441.0, + "relativeCreated": 17315.995884, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:15,441" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.4414701, + "msecs": 441.0, + "relativeCreated": 17316.279458, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:15,441" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.441992, + "msecs": 441.0, + "relativeCreated": 17316.801183, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:15,441" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.4832811, + "msecs": 483.0, + "relativeCreated": 17358.090342, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:54:15,483" + } + ], + "time_consumption": 0.013580083847045898 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.diningroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.4972024, + "msecs": 497.0, + "relativeCreated": 17372.011694, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.diningroom.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:15,497", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.diningroom.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.497085, + "msecs": 497.0, + "relativeCreated": 17371.894494, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.diningroom.main_light)): False ()", + "asctime": "2025-08-22 20:54:15,497" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.diningroom.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.4971614, + "msecs": 497.0, + "relativeCreated": 17371.970744, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.diningroom.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:15,497" + } + ], + "time_consumption": 4.100799560546875e-05 + } + ], + "time_consumption": 0.30290889739990234, + "time_start": "2025-08-22 20:54:15,194", + "time_finished": "2025-08-22 20:54:15,497" + }, + "Shelly.relay/0 (ffe.diningroom.main_light) -> ViDevLight.state (ffe.diningroom.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffe.diningroom.main_light) -> ViDevLight.state (ffe.diningroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888855.4973922, + "msecs": 497.0, + "relativeCreated": 17372.201291, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffe.diningroom.main_light) -> ViDevLight.state (ffe.diningroom.main_light)", + "asctime": "2025-08-22 20:54:15,497", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888855.5978522, + "msecs": 597.0, + "relativeCreated": 17472.661464, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:15,597", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.4975123, + "msecs": 497.0, + "relativeCreated": 17372.321725, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:15,497" + } + ], + "time_consumption": 0.10033988952636719 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.5982096, + "msecs": 598.0, + "relativeCreated": 17473.018876, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:15,598", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.5980804, + "msecs": 598.0, + "relativeCreated": 17472.889751, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:15,598" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.598167, + "msecs": 598.0, + "relativeCreated": 17472.976341, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:15,598" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.diningroom.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888855.698821, + "msecs": 698.0, + "relativeCreated": 17573.630478, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.diningroom.main_light) to True", + "asctime": "2025-08-22 20:54:15,698", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.5983326, + "msecs": 598.0, + "relativeCreated": 17473.141882, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:15,598" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.599406, + "msecs": 599.0, + "relativeCreated": 17474.215196, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:15,599" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.6411586, + "msecs": 641.0, + "relativeCreated": 17515.967785, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:15,641" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.6413841, + "msecs": 641.0, + "relativeCreated": 17516.193352, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:15,641" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.6417449, + "msecs": 641.0, + "relativeCreated": 17516.554175, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:15,641" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.6422315, + "msecs": 642.0, + "relativeCreated": 17517.040697, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:15,642" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.6834102, + "msecs": 683.0, + "relativeCreated": 17558.219417, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:54:15,683" + } + ], + "time_consumption": 0.015410900115966797 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.diningroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.6991544, + "msecs": 699.0, + "relativeCreated": 17573.963711, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.diningroom.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:15,699", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.6990378, + "msecs": 699.0, + "relativeCreated": 17573.847003, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.diningroom.main_light)): True ()", + "asctime": "2025-08-22 20:54:15,699" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.6990879, + "msecs": 699.0, + "relativeCreated": 17573.897003, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.diningroom.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:15,699" + } + ], + "time_consumption": 6.651878356933594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.diningroom.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888855.799764, + "msecs": 799.0, + "relativeCreated": 17674.573194, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.diningroom.main_light) to False", + "asctime": "2025-08-22 20:54:15,799", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.6992693, + "msecs": 699.0, + "relativeCreated": 17574.078512, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:15,699" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.700295, + "msecs": 700.0, + "relativeCreated": 17575.104179, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:15,700" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.7422624, + "msecs": 742.0, + "relativeCreated": 17617.07143, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:15,742" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.7425036, + "msecs": 742.0, + "relativeCreated": 17617.312852, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:15,742" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.7428653, + "msecs": 742.0, + "relativeCreated": 17617.674748, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:15,742" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.7435322, + "msecs": 743.0, + "relativeCreated": 17618.341442, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:15,743" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.7842424, + "msecs": 784.0, + "relativeCreated": 17659.051711, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:54:15,784" + } + ], + "time_consumption": 0.015521526336669922 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.diningroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.8000712, + "msecs": 800.0, + "relativeCreated": 17674.880375, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.diningroom.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:15,800", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.799981, + "msecs": 799.0, + "relativeCreated": 17674.790181, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.diningroom.main_light)): False ()", + "asctime": "2025-08-22 20:54:15,799" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.8000321, + "msecs": 800.0, + "relativeCreated": 17674.841584, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.diningroom.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:15,800" + } + ], + "time_consumption": 3.910064697265625e-05 + } + ], + "time_consumption": 0.30267906188964844, + "time_start": "2025-08-22 20:54:15,497", + "time_finished": "2025-08-22 20:54:15,800" + }, + "ViDevLight.state (ffe.diningroom.floorlamp) -> Powerplug1P.state (ffe.diningroom.floor_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.diningroom.floorlamp) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888855.8002634, + "msecs": 800.0, + "relativeCreated": 17675.072581, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.diningroom.floorlamp) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "asctime": "2025-08-22 20:54:15,800", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888855.9008892, + "msecs": 900.0, + "relativeCreated": 17775.698278, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:15,900", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.800408, + "msecs": 800.0, + "relativeCreated": 17675.216946, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", + "asctime": "2025-08-22 20:54:15,800" + } + ], + "time_consumption": 0.10048127174377441 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888855.9012346, + "msecs": 901.0, + "relativeCreated": 17776.043809, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:15,901", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888855.901134, + "msecs": 901.0, + "relativeCreated": 17775.943401, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:15,901" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888855.9011922, + "msecs": 901.0, + "relativeCreated": 17776.001532, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:15,901" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.diningroom.floorlamp)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888856.0017452, + "msecs": 1.0, + "relativeCreated": 17876.554387, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.diningroom.floorlamp) to True", + "asctime": "2025-08-22 20:54:16,001", + "moduleLogger": [ + { + "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/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.9013484, + "msecs": 901.0, + "relativeCreated": 17776.157469, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload true", + "asctime": "2025-08-22 20:54:15,901" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.9039474, + "msecs": 903.0, + "relativeCreated": 17778.756598, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:15,903" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888855.9041624, + "msecs": 904.0, + "relativeCreated": 17778.971529, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:15,904" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.9047217, + "msecs": 904.0, + "relativeCreated": 17779.530986, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:15,904" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888855.9460537, + "msecs": 946.0, + "relativeCreated": 17820.862743, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:54:15,946" + } + ], + "time_consumption": 0.05569148063659668 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.0020425, + "msecs": 2.0, + "relativeCreated": 17876.851879, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:16,002", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.0019486, + "msecs": 1.0, + "relativeCreated": 17876.758032, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.diningroom.floor_light)): True ()", + "asctime": "2025-08-22 20:54:16,001" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.0020058, + "msecs": 2.0, + "relativeCreated": 17876.814885, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.diningroom.floor_light)): result = True ()", + "asctime": "2025-08-22 20:54:16,002" + } + ], + "time_consumption": 3.6716461181640625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.diningroom.floorlamp)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888856.102605, + "msecs": 102.0, + "relativeCreated": 17977.414296, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.diningroom.floorlamp) to False", + "asctime": "2025-08-22 20:54:16,102", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.0021415, + "msecs": 2.0, + "relativeCreated": 17876.950706, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", + "asctime": "2025-08-22 20:54:16,002" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.0040905, + "msecs": 4.0, + "relativeCreated": 17878.899857, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:16,004" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.0043757, + "msecs": 4.0, + "relativeCreated": 17879.185132, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:16,004" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.0049906, + "msecs": 4.0, + "relativeCreated": 17879.799605, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:16,004" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.047028, + "msecs": 47.0, + "relativeCreated": 17921.837206, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:54:16,047" + } + ], + "time_consumption": 0.05557703971862793 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.1029692, + "msecs": 102.0, + "relativeCreated": 17977.77829, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:16,102", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.10286, + "msecs": 102.0, + "relativeCreated": 17977.669238, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.diningroom.floor_light)): False ()", + "asctime": "2025-08-22 20:54:16,102" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.102931, + "msecs": 102.0, + "relativeCreated": 17977.74017, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.diningroom.floor_light)): result = False ()", + "asctime": "2025-08-22 20:54:16,102" + } + ], + "time_consumption": 3.814697265625e-05 + } + ], + "time_consumption": 0.3027057647705078, + "time_start": "2025-08-22 20:54:15,800", + "time_finished": "2025-08-22 20:54:16,102" + }, + "Powerplug1P.state (ffe.diningroom.floor_light) -> ViDevLight.state (ffe.diningroom.floorlamp)": { + "name": "__tLogger__", + "msg": "Powerplug1P.state (ffe.diningroom.floor_light) -> ViDevLight.state (ffe.diningroom.floorlamp)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888856.1031544, + "msecs": 103.0, + "relativeCreated": 17977.963787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug1P.state (ffe.diningroom.floor_light) -> ViDevLight.state (ffe.diningroom.floorlamp)", + "asctime": "2025-08-22 20:54:16,103", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888856.203747, + "msecs": 203.0, + "relativeCreated": 18078.556269, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:16,203", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.103271, + "msecs": 103.0, + "relativeCreated": 17978.080132, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", + "asctime": "2025-08-22 20:54:16,103" + } + ], + "time_consumption": 0.10047602653503418 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.204114, + "msecs": 204.0, + "relativeCreated": 18078.923178, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:16,204", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.20399, + "msecs": 203.0, + "relativeCreated": 18078.79922, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:16,203" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.2040482, + "msecs": 204.0, + "relativeCreated": 18078.857412, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:16,204" + } + ], + "time_consumption": 6.580352783203125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.diningroom.floor_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888856.304787, + "msecs": 304.0, + "relativeCreated": 18179.596221, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.diningroom.floor_light) to True", + "asctime": "2025-08-22 20:54:16,304", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.2042544, + "msecs": 204.0, + "relativeCreated": 18079.063678, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:16,204" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.2054126, + "msecs": 205.0, + "relativeCreated": 18080.221915, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:16,205" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.206945, + "msecs": 206.0, + "relativeCreated": 18081.754206, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:54:16,206" + } + ], + "time_consumption": 0.09784197807312012 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.diningroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.3051422, + "msecs": 305.0, + "relativeCreated": 18179.951416, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.diningroom.floorlamp) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:16,305", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.floorlamp)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.3050387, + "msecs": 305.0, + "relativeCreated": 18179.847704, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.diningroom.floorlamp)): True ()", + "asctime": "2025-08-22 20:54:16,305" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.floorlamp)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.3051019, + "msecs": 305.0, + "relativeCreated": 18179.911058, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.diningroom.floorlamp)): result = True ()", + "asctime": "2025-08-22 20:54:16,305" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.diningroom.floor_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888856.4058027, + "msecs": 405.0, + "relativeCreated": 18280.612017, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.diningroom.floor_light) to False", + "asctime": "2025-08-22 20:54:16,405", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.3052728, + "msecs": 305.0, + "relativeCreated": 18180.082124, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:16,305" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.3064668, + "msecs": 306.0, + "relativeCreated": 18181.276065, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:16,306" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.3080091, + "msecs": 308.0, + "relativeCreated": 18182.818397, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:54:16,308" + } + ], + "time_consumption": 0.0977935791015625 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.diningroom.floorlamp) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.4061332, + "msecs": 406.0, + "relativeCreated": 18280.942596, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.diningroom.floorlamp) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:16,406", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.floorlamp)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.4060361, + "msecs": 406.0, + "relativeCreated": 18280.845356, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.diningroom.floorlamp)): False ()", + "asctime": "2025-08-22 20:54:16,406" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.floorlamp)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.406092, + "msecs": 406.0, + "relativeCreated": 18280.901329, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.diningroom.floorlamp)): result = False ()", + "asctime": "2025-08-22 20:54:16,406" + } + ], + "time_consumption": 4.124641418457031e-05 + } + ], + "time_consumption": 0.3029787540435791, + "time_start": "2025-08-22 20:54:16,103", + "time_finished": "2025-08-22 20:54:16,406" + }, + "Shelly.relay/0 (ffe.diningroom.main_light) -> Powerplug1P.state (ffe.diningroom.floor_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffe.diningroom.main_light) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888856.4063964, + "msecs": 406.0, + "relativeCreated": 18281.205698, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffe.diningroom.main_light) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "asctime": "2025-08-22 20:54:16,406", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888856.506797, + "msecs": 506.0, + "relativeCreated": 18381.606322, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:16,506", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.5071626, + "msecs": 507.0, + "relativeCreated": 18381.971871, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:16,507", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.507039, + "msecs": 507.0, + "relativeCreated": 18381.848259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:16,507" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.5071194, + "msecs": 507.0, + "relativeCreated": 18381.928482, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:16,507" + } + ], + "time_consumption": 4.315376281738281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.diningroom.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888856.607639, + "msecs": 607.0, + "relativeCreated": 18482.448325, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.diningroom.main_light) to True", + "asctime": "2025-08-22 20:54:16,607", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.5072887, + "msecs": 507.0, + "relativeCreated": 18382.097684, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:16,507" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.5084672, + "msecs": 508.0, + "relativeCreated": 18383.276516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:16,508" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.5102952, + "msecs": 510.0, + "relativeCreated": 18385.104288, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:16,510" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.5105667, + "msecs": 510.0, + "relativeCreated": 18385.375942, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:16,510" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.5110097, + "msecs": 511.0, + "relativeCreated": 18385.81915, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:16,511" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.51152, + "msecs": 511.0, + "relativeCreated": 18386.329177, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:16,511" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.5530672, + "msecs": 553.0, + "relativeCreated": 18427.876494, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", + "asctime": "2025-08-22 20:54:16,553" + } + ], + "time_consumption": 0.05457186698913574 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.6079419, + "msecs": 607.0, + "relativeCreated": 18482.751052, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:16,607", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.6078594, + "msecs": 607.0, + "relativeCreated": 18482.668564, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.diningroom.floor_light)): True ()", + "asctime": "2025-08-22 20:54:16,607" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.6079063, + "msecs": 607.0, + "relativeCreated": 18482.715547, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.diningroom.floor_light)): result = True ()", + "asctime": "2025-08-22 20:54:16,607" + } + ], + "time_consumption": 3.552436828613281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.diningroom.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888856.7084067, + "msecs": 708.0, + "relativeCreated": 18583.215961, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.diningroom.main_light) to False", + "asctime": "2025-08-22 20:54:16,708", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.6080456, + "msecs": 608.0, + "relativeCreated": 18482.854882, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:16,608" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/diningroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.6087596, + "msecs": 608.0, + "relativeCreated": 18483.568902, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:16,608" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.6101172, + "msecs": 610.0, + "relativeCreated": 18484.926324, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:16,610" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.6102846, + "msecs": 610.0, + "relativeCreated": 18485.093709, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/floor_light and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:16,610" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.6105585, + "msecs": 610.0, + "relativeCreated": 18485.36765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:16,610" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.floor_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/floor_light", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.6110926, + "msecs": 611.0, + "relativeCreated": 18485.901587, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/floor_light and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:16,611" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.653254, + "msecs": 653.0, + "relativeCreated": 18528.06326, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", + "asctime": "2025-08-22 20:54:16,653" + } + ], + "time_consumption": 0.05515265464782715 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.7087035, + "msecs": 708.0, + "relativeCreated": 18583.512609, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.diningroom.floor_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:16,708", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.7086046, + "msecs": 708.0, + "relativeCreated": 18583.413982, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.diningroom.floor_light)): False ()", + "asctime": "2025-08-22 20:54:16,708" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.floor_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.7086496, + "msecs": 708.0, + "relativeCreated": 18583.458952, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.diningroom.floor_light)): result = False ()", + "asctime": "2025-08-22 20:54:16,708" + } + ], + "time_consumption": 5.3882598876953125e-05 + } + ], + "time_consumption": 0.30230712890625, + "time_start": "2025-08-22 20:54:16,406", + "time_finished": "2025-08-22 20:54:16,708" + }, + "ViDevLight.state (ffe.diningroom.garland) -> Powerplug1P.state (ffe.diningroom.garland)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.diningroom.garland) -> Powerplug1P.state (ffe.diningroom.garland)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888856.7088788, + "msecs": 708.0, + "relativeCreated": 18583.688016, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.diningroom.garland) -> Powerplug1P.state (ffe.diningroom.garland)", + "asctime": "2025-08-22 20:54:16,708", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888856.809508, + "msecs": 809.0, + "relativeCreated": 18684.317299, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:16,809", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.7089899, + "msecs": 708.0, + "relativeCreated": 18583.799178, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload false", + "asctime": "2025-08-22 20:54:16,708" + } + ], + "time_consumption": 0.10051822662353516 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.8098996, + "msecs": 809.0, + "relativeCreated": 18684.70863, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:16,809", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.8097959, + "msecs": 809.0, + "relativeCreated": 18684.60507, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:16,809" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.8098567, + "msecs": 809.0, + "relativeCreated": 18684.665896, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:16,809" + } + ], + "time_consumption": 4.291534423828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.diningroom.garland)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888856.9105353, + "msecs": 910.0, + "relativeCreated": 18785.344599, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.diningroom.garland) to True", + "asctime": "2025-08-22 20:54:16,910", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.8100157, + "msecs": 810.0, + "relativeCreated": 18684.825049, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload true", + "asctime": "2025-08-22 20:54:16,810" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.8127532, + "msecs": 812.0, + "relativeCreated": 18687.562406, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:16,812" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.8129983, + "msecs": 812.0, + "relativeCreated": 18687.807649, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:16,812" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.8138669, + "msecs": 813.0, + "relativeCreated": 18688.676025, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:16,813" + }, + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.8544843, + "msecs": 854.0, + "relativeCreated": 18729.293408, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'true'", + "asctime": "2025-08-22 20:54:16,854" + } + ], + "time_consumption": 0.056051015853881836 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.diningroom.garland) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888856.9108765, + "msecs": 910.0, + "relativeCreated": 18785.685724, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.diningroom.garland) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:16,910", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.garland)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888856.9107845, + "msecs": 910.0, + "relativeCreated": 18785.593857, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.diningroom.garland)): True ()", + "asctime": "2025-08-22 20:54:16,910" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.garland)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888856.910839, + "msecs": 910.0, + "relativeCreated": 18785.64817, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.diningroom.garland)): result = True ()", + "asctime": "2025-08-22 20:54:16,910" + } + ], + "time_consumption": 3.743171691894531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.diningroom.garland)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888857.0114486, + "msecs": 11.0, + "relativeCreated": 18886.25783, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.diningroom.garland) to False", + "asctime": "2025-08-22 20:54:17,011", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.9109855, + "msecs": 910.0, + "relativeCreated": 18785.79483, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload false", + "asctime": "2025-08-22 20:54:16,910" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.913368, + "msecs": 913.0, + "relativeCreated": 18788.177364, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:16,913" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888856.9136145, + "msecs": 913.0, + "relativeCreated": 18788.423945, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:16,913" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.9142036, + "msecs": 914.0, + "relativeCreated": 18789.012827, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:16,914" + }, + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888856.956566, + "msecs": 956.0, + "relativeCreated": 18831.375242, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'false'", + "asctime": "2025-08-22 20:54:16,956" + } + ], + "time_consumption": 0.05488252639770508 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (ffe.diningroom.garland) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.0118275, + "msecs": 11.0, + "relativeCreated": 18886.636634, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (ffe.diningroom.garland) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:17,011", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.garland)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.0117145, + "msecs": 11.0, + "relativeCreated": 18886.523826, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (ffe.diningroom.garland)): False ()", + "asctime": "2025-08-22 20:54:17,011" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (ffe.diningroom.garland)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.0117888, + "msecs": 11.0, + "relativeCreated": 18886.597964, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (ffe.diningroom.garland)): result = False ()", + "asctime": "2025-08-22 20:54:17,011" + } + ], + "time_consumption": 3.8623809814453125e-05 + } + ], + "time_consumption": 0.3029487133026123, + "time_start": "2025-08-22 20:54:16,708", + "time_finished": "2025-08-22 20:54:17,011" + }, + "Powerplug1P.state (ffe.diningroom.garland) -> ViDevLight.state (ffe.diningroom.garland)": { + "name": "__tLogger__", + "msg": "Powerplug1P.state (ffe.diningroom.garland) -> ViDevLight.state (ffe.diningroom.garland)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888857.0120149, + "msecs": 12.0, + "relativeCreated": 18886.823977, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug1P.state (ffe.diningroom.garland) -> ViDevLight.state (ffe.diningroom.garland)", + "asctime": "2025-08-22 20:54:17,012", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888857.1125886, + "msecs": 112.0, + "relativeCreated": 18987.397841, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:17,112", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.0121326, + "msecs": 12.0, + "relativeCreated": 18886.941836, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/diningroom/garland/state/set and payload false", + "asctime": "2025-08-22 20:54:17,012" + } + ], + "time_consumption": 0.10045599937438965 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.1130311, + "msecs": 113.0, + "relativeCreated": 18987.840293, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:17,113", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.1128669, + "msecs": 112.0, + "relativeCreated": 18987.676063, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:17,112" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.1129665, + "msecs": 112.0, + "relativeCreated": 18987.776017, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:17,112" + } + ], + "time_consumption": 6.461143493652344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.diningroom.garland)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888857.21372, + "msecs": 213.0, + "relativeCreated": 19088.529231, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.diningroom.garland) to True", + "asctime": "2025-08-22 20:54:17,213", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.1131966, + "msecs": 113.0, + "relativeCreated": 18988.00586, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:17,113" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.1142738, + "msecs": 114.0, + "relativeCreated": 18989.082936, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:17,114" + }, + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.1157184, + "msecs": 115.0, + "relativeCreated": 18990.527615, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'true'", + "asctime": "2025-08-22 20:54:17,115" + } + ], + "time_consumption": 0.09800171852111816 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.diningroom.garland) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.2140515, + "msecs": 214.0, + "relativeCreated": 19088.860918, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.diningroom.garland) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:17,214", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.garland)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.2139573, + "msecs": 213.0, + "relativeCreated": 19088.766683, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.diningroom.garland)): True ()", + "asctime": "2025-08-22 20:54:17,213" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.garland)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.2140133, + "msecs": 214.0, + "relativeCreated": 19088.822747, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.diningroom.garland)): result = True ()", + "asctime": "2025-08-22 20:54:17,214" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (ffe.diningroom.garland)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888857.3146932, + "msecs": 314.0, + "relativeCreated": 19189.502333, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (ffe.diningroom.garland) to False", + "asctime": "2025-08-22 20:54:17,314", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.214174, + "msecs": 214.0, + "relativeCreated": 19088.98318, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/diningroom/garland and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:17,214" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.diningroom.garland", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/diningroom/garland", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.2152574, + "msecs": 215.0, + "relativeCreated": 19090.066587, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/diningroom/garland and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:17,215" + }, + { + "name": "smart_brain.mqtt.videv.ffe.diningroom.garland.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/diningroom/garland/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.2164505, + "msecs": 216.0, + "relativeCreated": 19091.259731, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/diningroom/garland/state and payload b'false'", + "asctime": "2025-08-22 20:54:17,216" + } + ], + "time_consumption": 0.09824275970458984 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.diningroom.garland) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.3150344, + "msecs": 315.0, + "relativeCreated": 19189.843585, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.diningroom.garland) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:17,315", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.garland)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.3149395, + "msecs": 314.0, + "relativeCreated": 19189.748683, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.diningroom.garland)): False ()", + "asctime": "2025-08-22 20:54:17,314" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.diningroom.garland)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.3149936, + "msecs": 314.0, + "relativeCreated": 19189.803002, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.diningroom.garland)): result = False ()", + "asctime": "2025-08-22 20:54:17,314" + } + ], + "time_consumption": 4.076957702636719e-05 + } + ], + "time_consumption": 0.30301952362060547, + "time_start": "2025-08-22 20:54:17,012", + "time_finished": "2025-08-22 20:54:17,315" + }, + "ViDevLight.state (ffe.kitchen.main_light) -> Shelly.relay/0 (ffe.kitchen.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.kitchen.main_light) -> Shelly.relay/0 (ffe.kitchen.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888857.315232, + "msecs": 315.0, + "relativeCreated": 19190.041206, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.kitchen.main_light) -> Shelly.relay/0 (ffe.kitchen.main_light)", + "asctime": "2025-08-22 20:54:17,315", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888857.4158864, + "msecs": 415.0, + "relativeCreated": 19290.695688, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:17,415", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.3154104, + "msecs": 315.0, + "relativeCreated": 19190.219614, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:17,315" + } + ], + "time_consumption": 0.10047602653503418 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.4162273, + "msecs": 416.0, + "relativeCreated": 19291.036466, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:17,416", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.4161267, + "msecs": 416.0, + "relativeCreated": 19290.935842, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:17,416" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.4161837, + "msecs": 416.0, + "relativeCreated": 19290.993035, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:17,416" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.kitchen.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888857.5168986, + "msecs": 516.0, + "relativeCreated": 19391.707745, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.kitchen.main_light) to True", + "asctime": "2025-08-22 20:54:17,516", + "moduleLogger": [ + { + "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/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.4163418, + "msecs": 416.0, + "relativeCreated": 19291.150867, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:17,416" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.4186077, + "msecs": 418.0, + "relativeCreated": 19293.416944, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:17,418" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.418834, + "msecs": 418.0, + "relativeCreated": 19293.643217, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:17,418" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.4193478, + "msecs": 419.0, + "relativeCreated": 19294.156898, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:17,419" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_1/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.461331, + "msecs": 461.0, + "relativeCreated": 19336.140102, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:17,461" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_2/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.4618936, + "msecs": 461.0, + "relativeCreated": 19336.70284, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:17,461" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.4623063, + "msecs": 462.0, + "relativeCreated": 19337.115548, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:17,462" + } + ], + "time_consumption": 0.05459237098693848 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.kitchen.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.5172122, + "msecs": 517.0, + "relativeCreated": 19392.021485, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.kitchen.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:17,517", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.5171213, + "msecs": 517.0, + "relativeCreated": 19391.930641, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.kitchen.main_light)): True ()", + "asctime": "2025-08-22 20:54:17,517" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.5171735, + "msecs": 517.0, + "relativeCreated": 19391.982791, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.kitchen.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:17,517" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.kitchen.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888857.61771, + "msecs": 617.0, + "relativeCreated": 19492.519367, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.kitchen.main_light) to False", + "asctime": "2025-08-22 20:54:17,617", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.5173163, + "msecs": 517.0, + "relativeCreated": 19392.125694, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:17,517" + }, + { + "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'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.5193493, + "msecs": 519.0, + "relativeCreated": 19394.158558, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:17,519" + }, + { + "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", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.519545, + "msecs": 519.0, + "relativeCreated": 19394.35443, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:17,519" + }, + { + "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'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.5200422, + "msecs": 520.0, + "relativeCreated": 19394.851588, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:17,520" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.5612605, + "msecs": 561.0, + "relativeCreated": 19436.069765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:17,561" + } + ], + "time_consumption": 0.05644965171813965 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.kitchen.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.6180372, + "msecs": 618.0, + "relativeCreated": 19492.846427, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.kitchen.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:17,618", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.61794, + "msecs": 617.0, + "relativeCreated": 19492.749266, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.kitchen.main_light)): False ()", + "asctime": "2025-08-22 20:54:17,617" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.6179938, + "msecs": 617.0, + "relativeCreated": 19492.802925, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.kitchen.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:17,617" + } + ], + "time_consumption": 4.3392181396484375e-05 + } + ], + "time_consumption": 0.30280518531799316, + "time_start": "2025-08-22 20:54:17,315", + "time_finished": "2025-08-22 20:54:17,618" + }, + "Shelly.relay/0 (ffe.kitchen.main_light) -> ViDevLight.state (ffe.kitchen.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffe.kitchen.main_light) -> ViDevLight.state (ffe.kitchen.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888857.618224, + "msecs": 618.0, + "relativeCreated": 19493.033165, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffe.kitchen.main_light) -> ViDevLight.state (ffe.kitchen.main_light)", + "asctime": "2025-08-22 20:54:17,618", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888857.718716, + "msecs": 718.0, + "relativeCreated": 19593.525211, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:17,718", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.6183398, + "msecs": 618.0, + "relativeCreated": 19493.149041, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:17,618" + } + ], + "time_consumption": 0.10037612915039062 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.7189114, + "msecs": 718.0, + "relativeCreated": 19593.720687, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:17,718", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.7188644, + "msecs": 718.0, + "relativeCreated": 19593.673519, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:17,718" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.7188926, + "msecs": 718.0, + "relativeCreated": 19593.701866, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:17,718" + } + ], + "time_consumption": 1.8835067749023438e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.kitchen.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888857.81926, + "msecs": 819.0, + "relativeCreated": 19694.06911, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.kitchen.main_light) to True", + "asctime": "2025-08-22 20:54:17,819", + "moduleLogger": [ + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.7189732, + "msecs": 718.0, + "relativeCreated": 19593.782414, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:17,718" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.7194984, + "msecs": 719.0, + "relativeCreated": 19594.307772, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:17,719" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_1/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.7202969, + "msecs": 720.0, + "relativeCreated": 19595.106131, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:17,720" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_2/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.7204409, + "msecs": 720.0, + "relativeCreated": 19595.250156, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:17,720" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.7205524, + "msecs": 720.0, + "relativeCreated": 19595.361612, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:17,720" + } + ], + "time_consumption": 0.09870743751525879 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.kitchen.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.819599, + "msecs": 819.0, + "relativeCreated": 19694.408106, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.kitchen.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:17,819", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.819482, + "msecs": 819.0, + "relativeCreated": 19694.291291, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.kitchen.main_light)): True ()", + "asctime": "2025-08-22 20:54:17,819" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.8195593, + "msecs": 819.0, + "relativeCreated": 19694.368785, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.kitchen.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:17,819" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.kitchen.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888857.9202244, + "msecs": 920.0, + "relativeCreated": 19795.033843, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.kitchen.main_light) to False", + "asctime": "2025-08-22 20:54:17,920", + "moduleLogger": [ + { + "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", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.81974, + "msecs": 819.0, + "relativeCreated": 19694.549413, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:17,819" + }, + { + "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'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.8205833, + "msecs": 820.0, + "relativeCreated": 19695.392659, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:17,820" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888857.8216665, + "msecs": 821.0, + "relativeCreated": 19696.475916, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:17,821" + } + ], + "time_consumption": 0.09855794906616211 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.kitchen.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888857.92058, + "msecs": 920.0, + "relativeCreated": 19795.38903, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.kitchen.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:17,920", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888857.9204578, + "msecs": 920.0, + "relativeCreated": 19795.266892, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.kitchen.main_light)): False ()", + "asctime": "2025-08-22 20:54:17,920" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888857.920537, + "msecs": 920.0, + "relativeCreated": 19795.346229, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.kitchen.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:17,920" + } + ], + "time_consumption": 4.291534423828125e-05 + } + ], + "time_consumption": 0.3023560047149658, + "time_start": "2025-08-22 20:54:17,618", + "time_finished": "2025-08-22 20:54:17,920" + }, + "ViDevLight.state (ffe.kitchen.circulation_pump) -> Shelly.relay/0 (ffe.kitchen.circulation_pump)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.kitchen.circulation_pump) -> Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888857.9208188, + "msecs": 920.0, + "relativeCreated": 19795.627939, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.kitchen.circulation_pump) -> Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "asctime": "2025-08-22 20:54:17,920", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888858.0214396, + "msecs": 21.0, + "relativeCreated": 19896.248767, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:18,021", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888857.92095, + "msecs": 920.0, + "relativeCreated": 19795.759221, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false", + "asctime": "2025-08-22 20:54:17,920" + } + ], + "time_consumption": 0.10048961639404297 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.0218368, + "msecs": 21.0, + "relativeCreated": 19896.646133, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:18,021", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.0217142, + "msecs": 21.0, + "relativeCreated": 19896.523528, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:18,021" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.0217965, + "msecs": 21.0, + "relativeCreated": 19896.605712, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:18,021" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.kitchen.circulation_pump)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888858.1223078, + "msecs": 122.0, + "relativeCreated": 19997.11701, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.kitchen.circulation_pump) to True", + "asctime": "2025-08-22 20:54:18,122", + "moduleLogger": [ + { + "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/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.0219517, + "msecs": 21.0, + "relativeCreated": 19896.76103, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload true", + "asctime": "2025-08-22 20:54:18,021" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.0242748, + "msecs": 24.0, + "relativeCreated": 19899.084161, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:18,024" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.0245585, + "msecs": 24.0, + "relativeCreated": 19899.36795, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload on", + "asctime": "2025-08-22 20:54:18,024" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.0251331, + "msecs": 25.0, + "relativeCreated": 19899.942346, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:18,025" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.0674026, + "msecs": 67.0, + "relativeCreated": 19942.21182, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'600'", + "asctime": "2025-08-22 20:54:18,067" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.1086233, + "msecs": 108.0, + "relativeCreated": 19983.432477, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:18,108" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.1089275, + "msecs": 108.0, + "relativeCreated": 19983.736661, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:18,108" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.1092718, + "msecs": 109.0, + "relativeCreated": 19984.081155, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'true'", + "asctime": "2025-08-22 20:54:18,109" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.1098688, + "msecs": 109.0, + "relativeCreated": 19984.677967, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:18,109" + } + ], + "time_consumption": 0.01243901252746582 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.1226277, + "msecs": 122.0, + "relativeCreated": 19997.437146, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:18,122", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.12253, + "msecs": 122.0, + "relativeCreated": 19997.339356, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)): True ()", + "asctime": "2025-08-22 20:54:18,122" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.1225867, + "msecs": 122.0, + "relativeCreated": 19997.395981, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)): result = True ()", + "asctime": "2025-08-22 20:54:18,122" + } + ], + "time_consumption": 4.100799560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.kitchen.circulation_pump)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888858.2231624, + "msecs": 223.0, + "relativeCreated": 20097.971493, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.kitchen.circulation_pump) to False", + "asctime": "2025-08-22 20:54:18,223", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.122757, + "msecs": 122.0, + "relativeCreated": 19997.565974, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false", + "asctime": "2025-08-22 20:54:18,122" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_1/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.1512213, + "msecs": 151.0, + "relativeCreated": 20026.0304, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:18,151" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_2/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.1932013, + "msecs": 193.0, + "relativeCreated": 20068.010667, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:18,193" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.19371, + "msecs": 193.0, + "relativeCreated": 20068.519438, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:18,193" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.1939845, + "msecs": 193.0, + "relativeCreated": 20068.793831, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:18,193" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.1941378, + "msecs": 194.0, + "relativeCreated": 20068.947136, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off", + "asctime": "2025-08-22 20:54:18,194" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.1947162, + "msecs": 194.0, + "relativeCreated": 20069.525377, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:18,194" + } + ], + "time_consumption": 0.028446197509765625 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.223535, + "msecs": 223.0, + "relativeCreated": 20098.344361, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:18,223", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.2234342, + "msecs": 223.0, + "relativeCreated": 20098.243435, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)): False ()", + "asctime": "2025-08-22 20:54:18,223" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.2234967, + "msecs": 223.0, + "relativeCreated": 20098.306031, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.kitchen.circulation_pump)): result = False ()", + "asctime": "2025-08-22 20:54:18,223" + } + ], + "time_consumption": 3.838539123535156e-05 + } + ], + "time_consumption": 0.3027162551879883, + "time_start": "2025-08-22 20:54:17,920", + "time_finished": "2025-08-22 20:54:18,223" + }, + "Shelly.relay/0 (ffe.kitchen.circulation_pump) -> ViDevLight.state (ffe.kitchen.circulation_pump)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffe.kitchen.circulation_pump) -> ViDevLight.state (ffe.kitchen.circulation_pump)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888858.2237802, + "msecs": 223.0, + "relativeCreated": 20098.589204, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffe.kitchen.circulation_pump) -> ViDevLight.state (ffe.kitchen.circulation_pump)", + "asctime": "2025-08-22 20:54:18,223", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888858.3244092, + "msecs": 324.0, + "relativeCreated": 20199.218584, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:18,324", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.2239316, + "msecs": 223.0, + "relativeCreated": 20098.740868, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false", + "asctime": "2025-08-22 20:54:18,223" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.2246435, + "msecs": 224.0, + "relativeCreated": 20099.452805, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0'", + "asctime": "2025-08-22 20:54:18,224" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.2651544, + "msecs": 265.0, + "relativeCreated": 20139.963457, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", + "asctime": "2025-08-22 20:54:18,265" + } + ], + "time_consumption": 0.05925488471984863 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.3247893, + "msecs": 324.0, + "relativeCreated": 20199.598416, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:18,324", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.32469, + "msecs": 324.0, + "relativeCreated": 20199.499328, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:18,324" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.3247478, + "msecs": 324.0, + "relativeCreated": 20199.557099, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:18,324" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888858.4252741, + "msecs": 425.0, + "relativeCreated": 20300.083348, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.kitchen.circulation_pump) to True", + "asctime": "2025-08-22 20:54:18,425", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.3249075, + "msecs": 324.0, + "relativeCreated": 20199.716721, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload on", + "asctime": "2025-08-22 20:54:18,324" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.3260639, + "msecs": 326.0, + "relativeCreated": 20200.873135, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:18,326" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.3280346, + "msecs": 328.0, + "relativeCreated": 20202.84379, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'600'", + "asctime": "2025-08-22 20:54:18,328" + }, + { + "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'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.3284369, + "msecs": 328.0, + "relativeCreated": 20203.24606, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:18,328" + }, + { + "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", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.3285863, + "msecs": 328.0, + "relativeCreated": 20203.395508, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:18,328" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.3289068, + "msecs": 328.0, + "relativeCreated": 20203.71611, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'true'", + "asctime": "2025-08-22 20:54:18,328" + }, + { + "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'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.3293211, + "msecs": 329.0, + "relativeCreated": 20204.130525, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:18,329" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.3714726, + "msecs": 371.0, + "relativeCreated": 20246.281751, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:18,371" + } + ], + "time_consumption": 0.053801536560058594 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.kitchen.circulation_pump) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.4255822, + "msecs": 425.0, + "relativeCreated": 20300.391186, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.kitchen.circulation_pump) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:18,425", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.circulation_pump)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.4254906, + "msecs": 425.0, + "relativeCreated": 20300.299926, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.kitchen.circulation_pump)): True ()", + "asctime": "2025-08-22 20:54:18,425" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.circulation_pump)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.4255438, + "msecs": 425.0, + "relativeCreated": 20300.353005, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.kitchen.circulation_pump)): result = True ()", + "asctime": "2025-08-22 20:54:18,425" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888858.5260808, + "msecs": 526.0, + "relativeCreated": 20400.890057, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.kitchen.circulation_pump) to False", + "asctime": "2025-08-22 20:54:18,526", + "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", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.4257164, + "msecs": 425.0, + "relativeCreated": 20300.525659, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off", + "asctime": "2025-08-22 20:54:18,425" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.4268124, + "msecs": 426.0, + "relativeCreated": 20301.621539, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:18,426" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.428268, + "msecs": 428.0, + "relativeCreated": 20303.077193, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0'", + "asctime": "2025-08-22 20:54:18,428" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.4286084, + "msecs": 428.0, + "relativeCreated": 20303.41786, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", + "asctime": "2025-08-22 20:54:18,428" + } + ], + "time_consumption": 0.0974724292755127 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.kitchen.circulation_pump) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.526416, + "msecs": 526.0, + "relativeCreated": 20401.225303, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.kitchen.circulation_pump) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:18,526", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.circulation_pump)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.5263, + "msecs": 526.0, + "relativeCreated": 20401.109215, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.kitchen.circulation_pump)): False ()", + "asctime": "2025-08-22 20:54:18,526" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.kitchen.circulation_pump)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.5263731, + "msecs": 526.0, + "relativeCreated": 20401.182259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.kitchen.circulation_pump)): result = False ()", + "asctime": "2025-08-22 20:54:18,526" + } + ], + "time_consumption": 4.291534423828125e-05 + } + ], + "time_consumption": 0.30263590812683105, + "time_start": "2025-08-22 20:54:18,223", + "time_finished": "2025-08-22 20:54:18,526" + }, + "ViDevHeating.temp_setp (ffe.kitchen.heating_valve) -> HeatingValve.temp_setp (ffe.kitchen.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (ffe.kitchen.heating_valve) -> HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888858.5266163, + "msecs": 526.0, + "relativeCreated": 20401.425531, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (ffe.kitchen.heating_valve) -> HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "asctime": "2025-08-22 20:54:18,526", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888858.6272886, + "msecs": 627.0, + "relativeCreated": 20502.097831, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:18,627", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.5267725, + "msecs": 526.0, + "relativeCreated": 20401.581652, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:18,526" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.5270426, + "msecs": 527.0, + "relativeCreated": 20401.851695, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:18,527" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.537114, + "msecs": 537.0, + "relativeCreated": 20411.92319, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:18,537" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.5374992, + "msecs": 537.0, + "relativeCreated": 20412.308495, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:18,537" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.5385172, + "msecs": 538.0, + "relativeCreated": 20413.326491, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:18,538" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.5388892, + "msecs": 538.0, + "relativeCreated": 20413.698391, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:18,538" + } + ], + "time_consumption": 0.08839941024780273 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.6275911, + "msecs": 627.0, + "relativeCreated": 20502.400419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:18,627", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.6275043, + "msecs": 627.0, + "relativeCreated": 20502.313634, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:18,627" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.627553, + "msecs": 627.0, + "relativeCreated": 20502.362174, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:18,627" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.kitchen.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888858.7280645, + "msecs": 728.0, + "relativeCreated": 20602.873741, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.kitchen.heating_valve) to 15", + "asctime": "2025-08-22 20:54:18,728", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.6277218, + "msecs": 627.0, + "relativeCreated": 20502.531007, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:18,627" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.6344087, + "msecs": 634.0, + "relativeCreated": 20509.218044, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:18,634" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.634632, + "msecs": 634.0, + "relativeCreated": 20509.441544, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:18,634" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/valve_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.6349587, + "msecs": 634.0, + "relativeCreated": 20509.767956, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:18,634" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.635283, + "msecs": 635.0, + "relativeCreated": 20510.092261, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:18,635" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.6355221, + "msecs": 635.0, + "relativeCreated": 20510.331169, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:18,635" + } + ], + "time_consumption": 0.09254240989685059 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.7283833, + "msecs": 728.0, + "relativeCreated": 20603.192485, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:18,728", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.7282767, + "msecs": 728.0, + "relativeCreated": 20603.085972, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:18,728" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.7283459, + "msecs": 728.0, + "relativeCreated": 20603.155008, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:18,728" + } + ], + "time_consumption": 3.743171691894531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.kitchen.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888858.828878, + "msecs": 828.0, + "relativeCreated": 20703.686969, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.kitchen.heating_valve) to 20", + "asctime": "2025-08-22 20:54:18,828", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.7284825, + "msecs": 728.0, + "relativeCreated": 20603.291877, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:18,728" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.7355182, + "msecs": 735.0, + "relativeCreated": 20610.327518, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:18,735" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.7357473, + "msecs": 735.0, + "relativeCreated": 20610.556677, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:18,735" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.7360566, + "msecs": 736.0, + "relativeCreated": 20610.865899, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:18,736" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.7363784, + "msecs": 736.0, + "relativeCreated": 20611.187596, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:18,736" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.7366023, + "msecs": 736.0, + "relativeCreated": 20611.411691, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:18,736" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.8183932, + "msecs": 818.0, + "relativeCreated": 20693.202492, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:18,818" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.818624, + "msecs": 818.0, + "relativeCreated": 20693.433356, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:18,818" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.8192277, + "msecs": 819.0, + "relativeCreated": 20694.036791, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:18,819" + } + ], + "time_consumption": 0.009650230407714844 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.8292572, + "msecs": 829.0, + "relativeCreated": 20704.066345, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:18,829", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.8290918, + "msecs": 829.0, + "relativeCreated": 20703.900948, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:18,829" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.8291802, + "msecs": 829.0, + "relativeCreated": 20703.989374, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:18,829" + } + ], + "time_consumption": 7.700920104980469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.kitchen.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888858.930158, + "msecs": 930.0, + "relativeCreated": 20804.967078, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.kitchen.heating_valve) to 25", + "asctime": "2025-08-22 20:54:18,930", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.8294604, + "msecs": 829.0, + "relativeCreated": 20704.269738, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:18,829" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_1/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.8678365, + "msecs": 867.0, + "relativeCreated": 20742.64568, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_1/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:18,867" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/main_light_2/set", + "b'{\"hue_power_on_behavior\": \"recover\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9082298, + "msecs": 908.0, + "relativeCreated": 20783.039197, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/main_light_2/set and payload b'{\"hue_power_on_behavior\": \"recover\"}'", + "asctime": "2025-08-22 20:54:18,908" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9085653, + "msecs": 908.0, + "relativeCreated": 20783.374432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:18,908" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9088364, + "msecs": 908.0, + "relativeCreated": 20783.645674, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:18,908" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.908974, + "msecs": 908.0, + "relativeCreated": 20783.783076, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:18,908" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9092228, + "msecs": 909.0, + "relativeCreated": 20784.03218, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:18,909" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9095695, + "msecs": 909.0, + "relativeCreated": 20784.378647, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:18,909" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9100084, + "msecs": 910.0, + "relativeCreated": 20784.817599, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:18,910" + } + ], + "time_consumption": 0.02014946937561035 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888858.9305463, + "msecs": 930.0, + "relativeCreated": 20805.355403, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:18,930", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888858.930445, + "msecs": 930.0, + "relativeCreated": 20805.254285, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:18,930" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888858.9305058, + "msecs": 930.0, + "relativeCreated": 20805.315076, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:18,930" + } + ], + "time_consumption": 4.0531158447265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffe.kitchen.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888859.0311089, + "msecs": 31.0, + "relativeCreated": 20905.918064, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffe.kitchen.heating_valve) to 30", + "asctime": "2025-08-22 20:54:19,031", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.9307072, + "msecs": 930.0, + "relativeCreated": 20805.516415, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:18,930" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9380896, + "msecs": 938.0, + "relativeCreated": 20812.899076, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:18,938" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888858.9384124, + "msecs": 938.0, + "relativeCreated": 20813.221811, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:18,938" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9391286, + "msecs": 939.0, + "relativeCreated": 20813.937747, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:18,939" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9395378, + "msecs": 939.0, + "relativeCreated": 20814.347001, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/kitchen/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:18,939" + }, + { + "name": "smart_brain.mqtt.zigbee_ffe.ffe.kitchen.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffe/ffe/kitchen/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888858.9800825, + "msecs": 980.0, + "relativeCreated": 20854.891676, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffe/ffe/kitchen/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:18,980" + } + ], + "time_consumption": 0.051026344299316406 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.031435, + "msecs": 31.0, + "relativeCreated": 20906.244168, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:19,031", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.0313451, + "msecs": 31.0, + "relativeCreated": 20906.154317, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:19,031" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.0313964, + "msecs": 31.0, + "relativeCreated": 20906.20549, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffe.kitchen.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:19,031" + } + ], + "time_consumption": 3.8623809814453125e-05 + } + ], + "time_consumption": 0.5048186779022217, + "time_start": "2025-08-22 20:54:18,526", + "time_finished": "2025-08-22 20:54:19,031" + }, + "ViDevLight.state (ffe.floor.main_light) -> Shelly.relay/0 (ffe.floor.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffe.floor.main_light) -> Shelly.relay/0 (ffe.floor.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888859.0316331, + "msecs": 31.0, + "relativeCreated": 20906.442344, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffe.floor.main_light) -> Shelly.relay/0 (ffe.floor.main_light)", + "asctime": "2025-08-22 20:54:19,031", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888859.1323018, + "msecs": 132.0, + "relativeCreated": 21007.111038, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:19,132", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.0317898, + "msecs": 31.0, + "relativeCreated": 20906.598993, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:19,031" + } + ], + "time_consumption": 0.10051202774047852 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.1326425, + "msecs": 132.0, + "relativeCreated": 21007.451883, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:19,132", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.132528, + "msecs": 132.0, + "relativeCreated": 21007.337341, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:19,132" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.1325812, + "msecs": 132.0, + "relativeCreated": 21007.39033, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:19,132" + } + ], + "time_consumption": 6.127357482910156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.floor.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888859.2331345, + "msecs": 233.0, + "relativeCreated": 21107.943915, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.floor.main_light) to True", + "asctime": "2025-08-22 20:54:19,233", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.1327882, + "msecs": 132.0, + "relativeCreated": 21007.597422, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:19,132" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.135093, + "msecs": 135.0, + "relativeCreated": 21009.902194, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:19,135" + }, + { + "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", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.1353197, + "msecs": 135.0, + "relativeCreated": 21010.129077, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:19,135" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.136048, + "msecs": 136.0, + "relativeCreated": 21010.857489, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:19,136" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.1774123, + "msecs": 177.0, + "relativeCreated": 21052.221512, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:19,177" + } + ], + "time_consumption": 0.05572223663330078 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.2334716, + "msecs": 233.0, + "relativeCreated": 21108.280983, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.floor.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:19,233", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.floor.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.233349, + "msecs": 233.0, + "relativeCreated": 21108.158259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.floor.main_light)): True ()", + "asctime": "2025-08-22 20:54:19,233" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.floor.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.2334316, + "msecs": 233.0, + "relativeCreated": 21108.240903, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.floor.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:19,233" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffe.floor.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888859.3340776, + "msecs": 334.0, + "relativeCreated": 21208.88681, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffe.floor.main_light) to False", + "asctime": "2025-08-22 20:54:19,334", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.2335773, + "msecs": 233.0, + "relativeCreated": 21108.386411, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:19,233" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.2358294, + "msecs": 235.0, + "relativeCreated": 21110.638374, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:19,235" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.2360344, + "msecs": 236.0, + "relativeCreated": 21110.843554, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:19,236" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.236686, + "msecs": 236.0, + "relativeCreated": 21111.495244, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:19,236" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.2775424, + "msecs": 277.0, + "relativeCreated": 21152.351542, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:19,277" + } + ], + "time_consumption": 0.05653524398803711 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffe.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.3344045, + "msecs": 334.0, + "relativeCreated": 21209.213546, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffe.floor.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:19,334", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.floor.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.3342943, + "msecs": 334.0, + "relativeCreated": 21209.10349, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffe.floor.main_light)): False ()", + "asctime": "2025-08-22 20:54:19,334" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffe.floor.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.3343666, + "msecs": 334.0, + "relativeCreated": 21209.175642, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffe.floor.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:19,334" + } + ], + "time_consumption": 3.790855407714844e-05 + } + ], + "time_consumption": 0.30277132987976074, + "time_start": "2025-08-22 20:54:19,031", + "time_finished": "2025-08-22 20:54:19,334" + }, + "Shelly.relay/0 (ffe.floor.main_light) -> ViDevLight.state (ffe.floor.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffe.floor.main_light) -> ViDevLight.state (ffe.floor.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888859.3346035, + "msecs": 334.0, + "relativeCreated": 21209.412719, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffe.floor.main_light) -> ViDevLight.state (ffe.floor.main_light)", + "asctime": "2025-08-22 20:54:19,334", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888859.4352374, + "msecs": 435.0, + "relativeCreated": 21310.046641, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:19,435", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.3347564, + "msecs": 334.0, + "relativeCreated": 21209.565709, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:19,334" + } + ], + "time_consumption": 0.10048103332519531 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.4355783, + "msecs": 435.0, + "relativeCreated": 21310.387698, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:19,435", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.4354782, + "msecs": 435.0, + "relativeCreated": 21310.287403, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:19,435" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.4355364, + "msecs": 435.0, + "relativeCreated": 21310.345677, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:19,435" + } + ], + "time_consumption": 4.1961669921875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.floor.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888859.536296, + "msecs": 536.0, + "relativeCreated": 21411.105246, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.floor.main_light) to True", + "asctime": "2025-08-22 20:54:19,536", + "moduleLogger": [ + { + "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", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.4357302, + "msecs": 435.0, + "relativeCreated": 21310.539434, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:19,435" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.4368005, + "msecs": 436.0, + "relativeCreated": 21311.609743, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:19,436" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.4382758, + "msecs": 438.0, + "relativeCreated": 21313.085008, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:19,438" + } + ], + "time_consumption": 0.09802007675170898 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.536651, + "msecs": 536.0, + "relativeCreated": 21411.460306, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.floor.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:19,536", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.floor.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.5365252, + "msecs": 536.0, + "relativeCreated": 21411.334501, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.floor.main_light)): True ()", + "asctime": "2025-08-22 20:54:19,536" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.floor.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.5366044, + "msecs": 536.0, + "relativeCreated": 21411.413622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.floor.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:19,536" + } + ], + "time_consumption": 4.649162292480469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffe.floor.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888859.6371744, + "msecs": 637.0, + "relativeCreated": 21511.983572, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffe.floor.main_light) to False", + "asctime": "2025-08-22 20:54:19,637", + "moduleLogger": [ + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.5367994, + "msecs": 536.0, + "relativeCreated": 21411.608814, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:19,536" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.5378153, + "msecs": 537.0, + "relativeCreated": 21412.624479, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:19,537" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.5392694, + "msecs": 539.0, + "relativeCreated": 21414.078582, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:19,539" + } + ], + "time_consumption": 0.09790492057800293 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffe.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.637498, + "msecs": 637.0, + "relativeCreated": 21512.307005, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffe.floor.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:19,637", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.floor.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.6373832, + "msecs": 637.0, + "relativeCreated": 21512.192427, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffe.floor.main_light)): False ()", + "asctime": "2025-08-22 20:54:19,637" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffe.floor.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.6374595, + "msecs": 637.0, + "relativeCreated": 21512.268667, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffe.floor.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:19,637" + } + ], + "time_consumption": 3.838539123535156e-05 + } + ], + "time_consumption": 0.30289435386657715, + "time_start": "2025-08-22 20:54:19,334", + "time_finished": "2025-08-22 20:54:19,637" + }, + "ViDevLight.state (ffw.livingroom.main_light) -> Shelly.relay/0 (ffw.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffw.livingroom.main_light) -> Shelly.relay/0 (ffw.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888859.637723, + "msecs": 637.0, + "relativeCreated": 21512.532097, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffw.livingroom.main_light) -> Shelly.relay/0 (ffw.livingroom.main_light)", + "asctime": "2025-08-22 20:54:19,637", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888859.7383869, + "msecs": 738.0, + "relativeCreated": 21613.196141, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:19,738", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.6378644, + "msecs": 637.0, + "relativeCreated": 21512.673655, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:19,637" + } + ], + "time_consumption": 0.10052251815795898 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.7387884, + "msecs": 738.0, + "relativeCreated": 21613.597479, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:19,738", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.738625, + "msecs": 738.0, + "relativeCreated": 21613.434246, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:19,738" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.7387424, + "msecs": 738.0, + "relativeCreated": 21613.551601, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:19,738" + } + ], + "time_consumption": 4.601478576660156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.livingroom.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888859.8392813, + "msecs": 839.0, + "relativeCreated": 21714.090646, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.livingroom.main_light) to True", + "asctime": "2025-08-22 20:54:19,839", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.7389143, + "msecs": 738.0, + "relativeCreated": 21613.723654, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:19,738" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.74122, + "msecs": 741.0, + "relativeCreated": 21616.029252, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:19,741" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.7414365, + "msecs": 741.0, + "relativeCreated": 21616.245556, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:19,741" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.7416985, + "msecs": 741.0, + "relativeCreated": 21616.507855, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:19,741" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.7423768, + "msecs": 742.0, + "relativeCreated": 21617.185875, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:19,742" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.7426817, + "msecs": 742.0, + "relativeCreated": 21617.491109, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:19,742" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.784666, + "msecs": 784.0, + "relativeCreated": 21659.475309, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:19,784" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.8254433, + "msecs": 825.0, + "relativeCreated": 21700.252483, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:19,825" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.8258882, + "msecs": 825.0, + "relativeCreated": 21700.6975, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5'", + "asctime": "2025-08-22 20:54:19,825" + } + ], + "time_consumption": 0.013393163681030273 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.8395905, + "msecs": 839.0, + "relativeCreated": 21714.39982, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.livingroom.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:19,839", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.livingroom.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.8395, + "msecs": 839.0, + "relativeCreated": 21714.309163, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.livingroom.main_light)): True ()", + "asctime": "2025-08-22 20:54:19,839" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.livingroom.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.8395512, + "msecs": 839.0, + "relativeCreated": 21714.360381, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.livingroom.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:19,839" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.livingroom.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888859.9401126, + "msecs": 940.0, + "relativeCreated": 21814.921924, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.livingroom.main_light) to False", + "asctime": "2025-08-22 20:54:19,940", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.8397133, + "msecs": 839.0, + "relativeCreated": 21714.522464, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:19,839" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.8417797, + "msecs": 841.0, + "relativeCreated": 21716.588875, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:19,841" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.841997, + "msecs": 841.0, + "relativeCreated": 21716.806134, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:19,841" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.8427527, + "msecs": 842.0, + "relativeCreated": 21717.562066, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:19,842" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888859.8836236, + "msecs": 883.0, + "relativeCreated": 21758.433002, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:19,883" + } + ], + "time_consumption": 0.056488990783691406 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888859.940449, + "msecs": 940.0, + "relativeCreated": 21815.258172, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.livingroom.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:19,940", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.livingroom.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888859.940358, + "msecs": 940.0, + "relativeCreated": 21815.167012, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.livingroom.main_light)): False ()", + "asctime": "2025-08-22 20:54:19,940" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.livingroom.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888859.9404106, + "msecs": 940.0, + "relativeCreated": 21815.219803, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.livingroom.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:19,940" + } + ], + "time_consumption": 3.838539123535156e-05 + } + ], + "time_consumption": 0.30272603034973145, + "time_start": "2025-08-22 20:54:19,637", + "time_finished": "2025-08-22 20:54:19,940" + }, + "Shelly.relay/0 (ffw.livingroom.main_light) -> ViDevLight.state (ffw.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffw.livingroom.main_light) -> ViDevLight.state (ffw.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888859.9406495, + "msecs": 940.0, + "relativeCreated": 21815.458756, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffw.livingroom.main_light) -> ViDevLight.state (ffw.livingroom.main_light)", + "asctime": "2025-08-22 20:54:19,940", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888860.0411556, + "msecs": 41.0, + "relativeCreated": 21915.964897, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:20,041", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888859.9408152, + "msecs": 940.0, + "relativeCreated": 21815.624266, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:19,940" + } + ], + "time_consumption": 0.10034036636352539 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.0414968, + "msecs": 41.0, + "relativeCreated": 21916.306184, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:20,041", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.0413966, + "msecs": 41.0, + "relativeCreated": 21916.205933, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:20,041" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.0414543, + "msecs": 41.0, + "relativeCreated": 21916.263549, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:20,041" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.livingroom.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888860.1423962, + "msecs": 142.0, + "relativeCreated": 22017.205516, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.livingroom.main_light) to True", + "asctime": "2025-08-22 20:54:20,142", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.041621, + "msecs": 41.0, + "relativeCreated": 21916.430295, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:20,041" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.041974, + "msecs": 41.0, + "relativeCreated": 21916.783136, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,041" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.0429616, + "msecs": 42.0, + "relativeCreated": 21917.770869, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:20,042" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.0434256, + "msecs": 43.0, + "relativeCreated": 21918.234809, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,043" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.0449464, + "msecs": 44.0, + "relativeCreated": 21919.755728, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:20,044" + } + ], + "time_consumption": 0.09744977951049805 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.142731, + "msecs": 142.0, + "relativeCreated": 22017.54013, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.livingroom.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:20,142", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.livingroom.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.1426091, + "msecs": 142.0, + "relativeCreated": 22017.418353, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.livingroom.main_light)): True ()", + "asctime": "2025-08-22 20:54:20,142" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.livingroom.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.1426897, + "msecs": 142.0, + "relativeCreated": 22017.499108, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.livingroom.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:20,142" + } + ], + "time_consumption": 4.124641418457031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.livingroom.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888860.2434068, + "msecs": 243.0, + "relativeCreated": 22118.216139, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.livingroom.main_light) to False", + "asctime": "2025-08-22 20:54:20,243", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.142855, + "msecs": 142.0, + "relativeCreated": 22017.664042, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:20,142" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.14398, + "msecs": 143.0, + "relativeCreated": 22018.789148, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:20,143" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.1455667, + "msecs": 145.0, + "relativeCreated": 22020.376009, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:20,145" + } + ], + "time_consumption": 0.0978400707244873 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.243791, + "msecs": 243.0, + "relativeCreated": 22118.600378, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.livingroom.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:20,243", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.livingroom.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.243638, + "msecs": 243.0, + "relativeCreated": 22118.447183, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.livingroom.main_light)): False ()", + "asctime": "2025-08-22 20:54:20,243" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.livingroom.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.2437484, + "msecs": 243.0, + "relativeCreated": 22118.557684, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.livingroom.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:20,243" + } + ], + "time_consumption": 4.267692565917969e-05 + } + ], + "time_consumption": 0.30314159393310547, + "time_start": "2025-08-22 20:54:19,940", + "time_finished": "2025-08-22 20:54:20,243" + }, + "ViDevLight.brightness (ffw.livingroom.main_light) -> Light.brightness (ffw.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (ffw.livingroom.main_light) -> Light.brightness (ffw.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888860.2440064, + "msecs": 244.0, + "relativeCreated": 22118.815573, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (ffw.livingroom.main_light) -> Light.brightness (ffw.livingroom.main_light)", + "asctime": "2025-08-22 20:54:20,244", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888860.3448334, + "msecs": 344.0, + "relativeCreated": 22219.642475, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:20,344", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.2441278, + "msecs": 244.0, + "relativeCreated": 22118.936954, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:20,244" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.2444298, + "msecs": 244.0, + "relativeCreated": 22119.239174, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,244" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.2453797, + "msecs": 245.0, + "relativeCreated": 22120.188944, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:20,245" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.2457526, + "msecs": 245.0, + "relativeCreated": 22120.561746, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,245" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.2862668, + "msecs": 286.0, + "relativeCreated": 22161.076137, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:20,286" + } + ], + "time_consumption": 0.05856657028198242 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888860.4458039, + "msecs": 445.0, + "relativeCreated": 22320.612986, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:20,445", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.3451269, + "msecs": 345.0, + "relativeCreated": 22219.936077, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:20,345" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.3454328, + "msecs": 345.0, + "relativeCreated": 22220.242009, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,345" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.3477285, + "msecs": 347.0, + "relativeCreated": 22222.537509, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:20,347" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.3480716, + "msecs": 348.0, + "relativeCreated": 22222.880874, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,348" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.389891, + "msecs": 389.0, + "relativeCreated": 22264.700023, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:20,389" + } + ], + "time_consumption": 0.05591297149658203 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.4461272, + "msecs": 446.0, + "relativeCreated": 22320.936461, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:20,446", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.4460347, + "msecs": 446.0, + "relativeCreated": 22320.843935, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:20,446" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.4460878, + "msecs": 446.0, + "relativeCreated": 22320.897106, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:20,446" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888860.5467718, + "msecs": 546.0, + "relativeCreated": 22421.580857, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:20,546", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.4462364, + "msecs": 446.0, + "relativeCreated": 22321.04555, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:20,446" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.448518, + "msecs": 448.0, + "relativeCreated": 22323.327302, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:20,448" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.4487693, + "msecs": 448.0, + "relativeCreated": 22323.578562, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,448" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.4494739, + "msecs": 449.0, + "relativeCreated": 22324.282962, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,449" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.4915075, + "msecs": 491.0, + "relativeCreated": 22366.316625, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:20,491" + } + ], + "time_consumption": 0.05526423454284668 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.547081, + "msecs": 547.0, + "relativeCreated": 22421.890119, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:20,547", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.5469863, + "msecs": 546.0, + "relativeCreated": 22421.795547, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:20,546" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.547041, + "msecs": 547.0, + "relativeCreated": 22421.850138, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:20,547" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.livingroom.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888860.6475284, + "msecs": 647.0, + "relativeCreated": 22522.337795, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.livingroom.main_light) to 20", + "asctime": "2025-08-22 20:54:20,647", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.5471885, + "msecs": 547.0, + "relativeCreated": 22421.997836, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:20,547" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.54961, + "msecs": 549.0, + "relativeCreated": 22424.419132, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:20,549" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.5498888, + "msecs": 549.0, + "relativeCreated": 22424.698008, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,549" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.5505238, + "msecs": 550.0, + "relativeCreated": 22425.33294, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,550" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.5913398, + "msecs": 591.0, + "relativeCreated": 22466.149137, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:20,591" + } + ], + "time_consumption": 0.05618858337402344 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.6478348, + "msecs": 647.0, + "relativeCreated": 22522.644052, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:20,647", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.64774, + "msecs": 647.0, + "relativeCreated": 22522.549154, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.livingroom.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:20,647" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.6477995, + "msecs": 647.0, + "relativeCreated": 22522.608881, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.livingroom.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:20,647" + } + ], + "time_consumption": 3.528594970703125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.livingroom.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888860.748366, + "msecs": 748.0, + "relativeCreated": 22623.175241, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.livingroom.main_light) to 40", + "asctime": "2025-08-22 20:54:20,748", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.6479278, + "msecs": 647.0, + "relativeCreated": 22522.737105, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:20,647" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.6496012, + "msecs": 649.0, + "relativeCreated": 22524.410408, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:20,649" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.6498666, + "msecs": 649.0, + "relativeCreated": 22524.675642, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,649" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.6503508, + "msecs": 650.0, + "relativeCreated": 22525.159995, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,650" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.6914494, + "msecs": 691.0, + "relativeCreated": 22566.25845, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:20,691" + } + ], + "time_consumption": 0.05691671371459961 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.748743, + "msecs": 748.0, + "relativeCreated": 22623.552363, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:20,748", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.748611, + "msecs": 748.0, + "relativeCreated": 22623.420418, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.livingroom.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:20,748" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.7487006, + "msecs": 748.0, + "relativeCreated": 22623.509885, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.livingroom.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:20,748" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.livingroom.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888860.849206, + "msecs": 849.0, + "relativeCreated": 22724.015206, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.livingroom.main_light) to 60", + "asctime": "2025-08-22 20:54:20,849", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.7488523, + "msecs": 748.0, + "relativeCreated": 22623.661547, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:20,748" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.7512364, + "msecs": 751.0, + "relativeCreated": 22626.045642, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:20,751" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.7515025, + "msecs": 751.0, + "relativeCreated": 22626.311732, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,751" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.7521248, + "msecs": 752.0, + "relativeCreated": 22626.933814, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,752" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.7945487, + "msecs": 794.0, + "relativeCreated": 22669.357956, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:20,794" + } + ], + "time_consumption": 0.0546572208404541 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.8495123, + "msecs": 849.0, + "relativeCreated": 22724.321769, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:20,849", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.849422, + "msecs": 849.0, + "relativeCreated": 22724.231348, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.livingroom.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:20,849" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.849474, + "msecs": 849.0, + "relativeCreated": 22724.283366, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.livingroom.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:20,849" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.livingroom.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888860.9501426, + "msecs": 950.0, + "relativeCreated": 22824.951992, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.livingroom.main_light) to 80", + "asctime": "2025-08-22 20:54:20,950", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.849643, + "msecs": 849.0, + "relativeCreated": 22724.452188, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:20,849" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.8517466, + "msecs": 851.0, + "relativeCreated": 22726.55572, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:20,851" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.8520148, + "msecs": 852.0, + "relativeCreated": 22726.824136, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,852" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.8525028, + "msecs": 852.0, + "relativeCreated": 22727.312057, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,852" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.8940308, + "msecs": 894.0, + "relativeCreated": 22768.840001, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:20,894" + } + ], + "time_consumption": 0.056111812591552734 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888860.9504442, + "msecs": 950.0, + "relativeCreated": 22825.25352, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:20,950", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888860.9503524, + "msecs": 950.0, + "relativeCreated": 22825.161684, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.livingroom.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:20,950" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888860.9504051, + "msecs": 950.0, + "relativeCreated": 22825.21432, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.livingroom.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:20,950" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.livingroom.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888861.0509381, + "msecs": 50.0, + "relativeCreated": 22925.747237, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.livingroom.main_light) to 100", + "asctime": "2025-08-22 20:54:21,050", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.9505482, + "msecs": 950.0, + "relativeCreated": 22825.357522, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:20,950" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.9528482, + "msecs": 952.0, + "relativeCreated": 22827.657365, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:20,952" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888860.953115, + "msecs": 953.0, + "relativeCreated": 22827.924134, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:20,953" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.9536247, + "msecs": 953.0, + "relativeCreated": 22828.434149, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:20,953" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888860.9945529, + "msecs": 994.0, + "relativeCreated": 22869.362044, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:20,994" + } + ], + "time_consumption": 0.05638527870178223 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.0512424, + "msecs": 51.0, + "relativeCreated": 22926.051595, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.livingroom.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:21,051", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.05114, + "msecs": 51.0, + "relativeCreated": 22925.94945, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.livingroom.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:21,051" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.livingroom.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.0512064, + "msecs": 51.0, + "relativeCreated": 22926.015595, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.livingroom.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:21,051" + } + ], + "time_consumption": 3.600120544433594e-05 + } + ], + "time_consumption": 0.8072359561920166, + "time_start": "2025-08-22 20:54:20,244", + "time_finished": "2025-08-22 20:54:21,051" + }, + "Light.brightness (ffw.livingroom.main_light) -> ViDevLight.brightness (ffw.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "Light.brightness (ffw.livingroom.main_light) -> ViDevLight.brightness (ffw.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888861.051431, + "msecs": 51.0, + "relativeCreated": 22926.240248, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (ffw.livingroom.main_light) -> ViDevLight.brightness (ffw.livingroom.main_light)", + "asctime": "2025-08-22 20:54:21,051", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888861.1516993, + "msecs": 151.0, + "relativeCreated": 23026.508554, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:21,151", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888861.252498, + "msecs": 252.0, + "relativeCreated": 23127.307052, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:21,252", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.152002, + "msecs": 152.0, + "relativeCreated": 23026.811283, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:21,152" + } + ], + "time_consumption": 0.10049581527709961 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.2528691, + "msecs": 252.0, + "relativeCreated": 23127.678319, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:21,252", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.252766, + "msecs": 252.0, + "relativeCreated": 23127.575112, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:21,252" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.252827, + "msecs": 252.0, + "relativeCreated": 23127.636023, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:21,252" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888861.353589, + "msecs": 353.0, + "relativeCreated": 23228.398191, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:21,353", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.2530386, + "msecs": 253.0, + "relativeCreated": 23127.84771, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:21,253" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.2543354, + "msecs": 254.0, + "relativeCreated": 23129.144633, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:21,254" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.2557974, + "msecs": 255.0, + "relativeCreated": 23130.60674, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:21,255" + } + ], + "time_consumption": 0.09779167175292969 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.3539817, + "msecs": 353.0, + "relativeCreated": 23228.790949, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:21,353", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.3538523, + "msecs": 353.0, + "relativeCreated": 23228.661403, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:21,353" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.3539126, + "msecs": 353.0, + "relativeCreated": 23228.721888, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:21,353" + } + ], + "time_consumption": 6.914138793945312e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.livingroom.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888861.4547288, + "msecs": 454.0, + "relativeCreated": 23329.538115, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.livingroom.main_light) to 20", + "asctime": "2025-08-22 20:54:21,454", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.3541443, + "msecs": 354.0, + "relativeCreated": 23228.95341, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:21,354" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.355424, + "msecs": 355.0, + "relativeCreated": 23230.233217, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:21,355" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.3600526, + "msecs": 360.0, + "relativeCreated": 23234.861802, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:21,360" + } + ], + "time_consumption": 0.09467625617980957 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.4550638, + "msecs": 455.0, + "relativeCreated": 23329.872952, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:21,455", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.4549422, + "msecs": 454.0, + "relativeCreated": 23329.75136, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.livingroom.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:21,454" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.4550202, + "msecs": 455.0, + "relativeCreated": 23329.82954, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.livingroom.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:21,455" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.livingroom.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888861.5557947, + "msecs": 555.0, + "relativeCreated": 23430.603951, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.livingroom.main_light) to 40", + "asctime": "2025-08-22 20:54:21,555", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.4552248, + "msecs": 455.0, + "relativeCreated": 23330.034139, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:21,455" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.4563653, + "msecs": 456.0, + "relativeCreated": 23331.174516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:21,456" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.4578538, + "msecs": 457.0, + "relativeCreated": 23332.662861, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:21,457" + } + ], + "time_consumption": 0.09794092178344727 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.5561464, + "msecs": 556.0, + "relativeCreated": 23430.955626, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:21,556", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.5560195, + "msecs": 556.0, + "relativeCreated": 23430.828804, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.livingroom.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:21,556" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.5561032, + "msecs": 556.0, + "relativeCreated": 23430.912362, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.livingroom.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:21,556" + } + ], + "time_consumption": 4.315376281738281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.livingroom.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888861.656763, + "msecs": 656.0, + "relativeCreated": 23531.572401, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.livingroom.main_light) to 60", + "asctime": "2025-08-22 20:54:21,656", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.5563102, + "msecs": 556.0, + "relativeCreated": 23431.119392, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:21,556" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.5573921, + "msecs": 557.0, + "relativeCreated": 23432.201254, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:21,557" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.5588398, + "msecs": 558.0, + "relativeCreated": 23433.649132, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:21,558" + } + ], + "time_consumption": 0.09792327880859375 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.6570957, + "msecs": 657.0, + "relativeCreated": 23531.905024, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:21,657", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.6569893, + "msecs": 656.0, + "relativeCreated": 23531.798645, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.livingroom.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:21,656" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.6570508, + "msecs": 657.0, + "relativeCreated": 23531.860046, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.livingroom.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:21,657" + } + ], + "time_consumption": 4.482269287109375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.livingroom.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888861.7578099, + "msecs": 757.0, + "relativeCreated": 23632.61925, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.livingroom.main_light) to 80", + "asctime": "2025-08-22 20:54:21,757", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.6572635, + "msecs": 657.0, + "relativeCreated": 23532.072966, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:21,657" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.6582434, + "msecs": 658.0, + "relativeCreated": 23533.052472, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:21,658" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.6595683, + "msecs": 659.0, + "relativeCreated": 23534.377572, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:21,659" + } + ], + "time_consumption": 0.09824156761169434 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.7581675, + "msecs": 758.0, + "relativeCreated": 23632.976903, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:21,758", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.7580376, + "msecs": 758.0, + "relativeCreated": 23632.846619, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.livingroom.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:21,758" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.7581246, + "msecs": 758.0, + "relativeCreated": 23632.933671, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.livingroom.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:21,758" + } + ], + "time_consumption": 4.291534423828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.livingroom.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888861.8588367, + "msecs": 858.0, + "relativeCreated": 23733.645856, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.livingroom.main_light) to 100", + "asctime": "2025-08-22 20:54:21,858", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.7583268, + "msecs": 758.0, + "relativeCreated": 23633.135996, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:21,758" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.7593882, + "msecs": 759.0, + "relativeCreated": 23634.197462, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:21,759" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.7607844, + "msecs": 760.0, + "relativeCreated": 23635.593693, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:21,760" + } + ], + "time_consumption": 0.0980522632598877 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888861.8591876, + "msecs": 859.0, + "relativeCreated": 23733.996849, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.livingroom.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:21,859", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888861.8590589, + "msecs": 859.0, + "relativeCreated": 23733.868213, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.livingroom.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:21,859" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.livingroom.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888861.8591447, + "msecs": 859.0, + "relativeCreated": 23733.953948, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.livingroom.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:21,859" + } + ], + "time_consumption": 4.291534423828125e-05 + } + ], + "time_consumption": 0.8077566623687744, + "time_start": "2025-08-22 20:54:21,051", + "time_finished": "2025-08-22 20:54:21,859" + }, + "ViDevLight.color_temp (ffw.livingroom.main_light) -> Light.color_temp (ffw.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.color_temp (ffw.livingroom.main_light) -> Light.color_temp (ffw.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888861.8594158, + "msecs": 859.0, + "relativeCreated": 23734.224965, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.color_temp (ffw.livingroom.main_light) -> Light.color_temp (ffw.livingroom.main_light)", + "asctime": "2025-08-22 20:54:21,859", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888861.9598076, + "msecs": 959.0, + "relativeCreated": 23834.616945, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:21,959", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888862.0607128, + "msecs": 60.0, + "relativeCreated": 23935.521923, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:22,060", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.9601161, + "msecs": 960.0, + "relativeCreated": 23834.925355, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:21,960" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888861.96042, + "msecs": 960.0, + "relativeCreated": 23835.229202, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:21,960" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.9626238, + "msecs": 962.0, + "relativeCreated": 23837.433087, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:21,962" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888861.9630256, + "msecs": 963.0, + "relativeCreated": 23837.835022, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:21,963" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.0045102, + "msecs": 4.0, + "relativeCreated": 23879.319389, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:22,004" + } + ], + "time_consumption": 0.05620265007019043 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.0610442, + "msecs": 61.0, + "relativeCreated": 23935.853562, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:22,061", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.060944, + "msecs": 60.0, + "relativeCreated": 23935.753353, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:22,060" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.0610037, + "msecs": 61.0, + "relativeCreated": 23935.812991, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:22,061" + } + ], + "time_consumption": 4.0531158447265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888862.161613, + "msecs": 161.0, + "relativeCreated": 24036.422289, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:22,161", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.0611472, + "msecs": 61.0, + "relativeCreated": 23935.956489, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 0", + "asctime": "2025-08-22 20:54:22,061" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.0631413, + "msecs": 63.0, + "relativeCreated": 23937.950702, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:22,063" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.0633972, + "msecs": 63.0, + "relativeCreated": 23938.206319, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:22,063" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.063878, + "msecs": 63.0, + "relativeCreated": 23938.687475, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:22,063" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.105525, + "msecs": 105.0, + "relativeCreated": 23980.334237, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:22,105" + } + ], + "time_consumption": 0.05608797073364258 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.1619759, + "msecs": 161.0, + "relativeCreated": 24036.784999, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:22,161", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.161865, + "msecs": 161.0, + "relativeCreated": 24036.674233, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:22,161" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.1619177, + "msecs": 161.0, + "relativeCreated": 24036.72684, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:22,161" + } + ], + "time_consumption": 5.817413330078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.livingroom.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888862.262521, + "msecs": 262.0, + "relativeCreated": 24137.330353, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.livingroom.main_light) to 2", + "asctime": "2025-08-22 20:54:22,262", + "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", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.1620822, + "msecs": 162.0, + "relativeCreated": 24036.891592, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 2", + "asctime": "2025-08-22 20:54:22,162" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.1643317, + "msecs": 164.0, + "relativeCreated": 24039.140906, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:22,164" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.1645997, + "msecs": 164.0, + "relativeCreated": 24039.408826, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:22,164" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.1652098, + "msecs": 165.0, + "relativeCreated": 24040.019215, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:22,165" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.207047, + "msecs": 207.0, + "relativeCreated": 24081.856034, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:22,207" + } + ], + "time_consumption": 0.055474042892456055 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.2628834, + "msecs": 262.0, + "relativeCreated": 24137.692459, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:22,262", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.2627668, + "msecs": 262.0, + "relativeCreated": 24137.57618, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.livingroom.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:22,262" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.2628446, + "msecs": 262.0, + "relativeCreated": 24137.653993, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.livingroom.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:22,262" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.livingroom.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888862.3634868, + "msecs": 363.0, + "relativeCreated": 24238.29604, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.livingroom.main_light) to 4", + "asctime": "2025-08-22 20:54:22,363", + "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", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.2629962, + "msecs": 262.0, + "relativeCreated": 24137.805563, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 4", + "asctime": "2025-08-22 20:54:22,262" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.2654123, + "msecs": 265.0, + "relativeCreated": 24140.221581, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:22,265" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.2656944, + "msecs": 265.0, + "relativeCreated": 24140.503663, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:22,265" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.2664149, + "msecs": 266.0, + "relativeCreated": 24141.223965, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:22,266" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.3075616, + "msecs": 307.0, + "relativeCreated": 24182.37087, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:22,307" + } + ], + "time_consumption": 0.05592513084411621 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.3638496, + "msecs": 363.0, + "relativeCreated": 24238.658927, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:22,363", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.3637335, + "msecs": 363.0, + "relativeCreated": 24238.542675, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.livingroom.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:22,363" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.3638108, + "msecs": 363.0, + "relativeCreated": 24238.620059, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.livingroom.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:22,363" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.livingroom.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888862.4644127, + "msecs": 464.0, + "relativeCreated": 24339.222027, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.livingroom.main_light) to 6", + "asctime": "2025-08-22 20:54:22,464", + "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", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.3639588, + "msecs": 363.0, + "relativeCreated": 24238.767968, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 6", + "asctime": "2025-08-22 20:54:22,363" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.3663647, + "msecs": 366.0, + "relativeCreated": 24241.173952, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:22,366" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.36659, + "msecs": 366.0, + "relativeCreated": 24241.399183, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:22,366" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.3672776, + "msecs": 367.0, + "relativeCreated": 24242.086776, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:22,367" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.4084005, + "msecs": 408.0, + "relativeCreated": 24283.209887, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:22,408" + } + ], + "time_consumption": 0.05601215362548828 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.4647534, + "msecs": 464.0, + "relativeCreated": 24339.5627, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:22,464", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.4646273, + "msecs": 464.0, + "relativeCreated": 24339.436378, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.livingroom.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:22,464" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.4647145, + "msecs": 464.0, + "relativeCreated": 24339.52375, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.livingroom.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:22,464" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.livingroom.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888862.565319, + "msecs": 565.0, + "relativeCreated": 24440.128448, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.livingroom.main_light) to 8", + "asctime": "2025-08-22 20:54:22,565", + "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", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.4648588, + "msecs": 464.0, + "relativeCreated": 24339.66806, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 8", + "asctime": "2025-08-22 20:54:22,464" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.4672022, + "msecs": 467.0, + "relativeCreated": 24342.011539, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:22,467" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.467447, + "msecs": 467.0, + "relativeCreated": 24342.256299, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:22,467" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.4681025, + "msecs": 468.0, + "relativeCreated": 24342.911521, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:22,468" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.5095189, + "msecs": 509.0, + "relativeCreated": 24384.328159, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:22,509" + } + ], + "time_consumption": 0.05580019950866699 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.5655766, + "msecs": 565.0, + "relativeCreated": 24440.385713, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:22,565", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.565498, + "msecs": 565.0, + "relativeCreated": 24440.307335, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.livingroom.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:22,565" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.5655437, + "msecs": 565.0, + "relativeCreated": 24440.352871, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.livingroom.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:22,565" + } + ], + "time_consumption": 3.2901763916015625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.livingroom.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888862.6660058, + "msecs": 666.0, + "relativeCreated": 24540.81511, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.livingroom.main_light) to 10", + "asctime": "2025-08-22 20:54:22,666", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.5656972, + "msecs": 565.0, + "relativeCreated": 24440.506553, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:22,565" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.567787, + "msecs": 567.0, + "relativeCreated": 24442.596227, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:22,567" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.568046, + "msecs": 568.0, + "relativeCreated": 24442.855231, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:22,568" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.5686252, + "msecs": 568.0, + "relativeCreated": 24443.4344, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:22,568" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.6096802, + "msecs": 609.0, + "relativeCreated": 24484.489364, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:22,609" + } + ], + "time_consumption": 0.056325674057006836 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.6663067, + "msecs": 666.0, + "relativeCreated": 24541.116029, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.livingroom.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:22,666", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.6662052, + "msecs": 666.0, + "relativeCreated": 24541.014462, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.livingroom.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:22,666" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.livingroom.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.666271, + "msecs": 666.0, + "relativeCreated": 24541.080276, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.livingroom.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:22,666" + } + ], + "time_consumption": 3.5762786865234375e-05 + } + ], + "time_consumption": 0.8068909645080566, + "time_start": "2025-08-22 20:54:21,859", + "time_finished": "2025-08-22 20:54:22,666" + }, + "Light.color_temp (ffw.livingroom.main_light) -> ViDevLight.color_temp (ffw.livingroom.main_light)": { + "name": "__tLogger__", + "msg": "Light.color_temp (ffw.livingroom.main_light) -> ViDevLight.color_temp (ffw.livingroom.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888862.66651, + "msecs": 666.0, + "relativeCreated": 24541.319441, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.color_temp (ffw.livingroom.main_light) -> ViDevLight.color_temp (ffw.livingroom.main_light)", + "asctime": "2025-08-22 20:54:22,666", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888862.7668736, + "msecs": 766.0, + "relativeCreated": 24641.682744, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:22,766", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888862.8677206, + "msecs": 867.0, + "relativeCreated": 24742.529886, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:22,867", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.7671793, + "msecs": 767.0, + "relativeCreated": 24641.988468, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:22,767" + } + ], + "time_consumption": 0.10054135322570801 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.8680599, + "msecs": 868.0, + "relativeCreated": 24742.869068, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:22,868", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.8679621, + "msecs": 867.0, + "relativeCreated": 24742.771251, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:22,867" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.8680182, + "msecs": 868.0, + "relativeCreated": 24742.827495, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:22,868" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.livingroom.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888862.9686806, + "msecs": 968.0, + "relativeCreated": 24843.489898, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.livingroom.main_light) to 0", + "asctime": "2025-08-22 20:54:22,968", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.8682573, + "msecs": 868.0, + "relativeCreated": 24743.06653, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:22,868" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.8694055, + "msecs": 869.0, + "relativeCreated": 24744.214566, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:22,869" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.870812, + "msecs": 870.0, + "relativeCreated": 24745.621242, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:22,870" + } + ], + "time_consumption": 0.09786868095397949 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888862.9689965, + "msecs": 968.0, + "relativeCreated": 24843.805791, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:22,968", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888862.9689016, + "msecs": 968.0, + "relativeCreated": 24843.710891, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:22,968" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888862.968957, + "msecs": 968.0, + "relativeCreated": 24843.766063, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:22,968" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.livingroom.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.0697656, + "msecs": 69.0, + "relativeCreated": 24944.574812, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.livingroom.main_light) to 2", + "asctime": "2025-08-22 20:54:23,069", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888862.9691525, + "msecs": 969.0, + "relativeCreated": 24843.961821, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:22,969" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.9702544, + "msecs": 970.0, + "relativeCreated": 24845.063653, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:22,970" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888862.9717255, + "msecs": 971.0, + "relativeCreated": 24846.534703, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:22,971" + } + ], + "time_consumption": 0.09804010391235352 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.0700955, + "msecs": 70.0, + "relativeCreated": 24944.904805, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:23,070", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.0699754, + "msecs": 69.0, + "relativeCreated": 24944.78454, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:23,069" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.070056, + "msecs": 70.0, + "relativeCreated": 24944.86523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:23,070" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.livingroom.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.1707993, + "msecs": 170.0, + "relativeCreated": 25045.608686, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.livingroom.main_light) to 4", + "asctime": "2025-08-22 20:54:23,170", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.070253, + "msecs": 70.0, + "relativeCreated": 24945.061908, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:23,070" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.0713882, + "msecs": 71.0, + "relativeCreated": 24946.197382, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:23,071" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.0728137, + "msecs": 72.0, + "relativeCreated": 24947.622968, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:23,072" + } + ], + "time_consumption": 0.09798550605773926 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.1711586, + "msecs": 171.0, + "relativeCreated": 25045.967864, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:23,171", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.1710284, + "msecs": 171.0, + "relativeCreated": 25045.837645, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:23,171" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.1711164, + "msecs": 171.0, + "relativeCreated": 25045.925457, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:23,171" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.livingroom.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.2718415, + "msecs": 271.0, + "relativeCreated": 25146.650669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.livingroom.main_light) to 6", + "asctime": "2025-08-22 20:54:23,271", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.1713197, + "msecs": 171.0, + "relativeCreated": 25046.129128, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:23,171" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.1724906, + "msecs": 172.0, + "relativeCreated": 25047.299662, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:23,172" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.173881, + "msecs": 173.0, + "relativeCreated": 25048.690301, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:23,173" + } + ], + "time_consumption": 0.0979604721069336 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.2721663, + "msecs": 272.0, + "relativeCreated": 25146.975466, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:23,272", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.2720695, + "msecs": 272.0, + "relativeCreated": 25146.878645, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:23,272" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.272125, + "msecs": 272.0, + "relativeCreated": 25146.934082, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:23,272" + } + ], + "time_consumption": 4.124641418457031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.livingroom.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.3728049, + "msecs": 372.0, + "relativeCreated": 25247.613979, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.livingroom.main_light) to 8", + "asctime": "2025-08-22 20:54:23,372", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.2723484, + "msecs": 272.0, + "relativeCreated": 25147.15765, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:23,272" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.273598, + "msecs": 273.0, + "relativeCreated": 25148.407143, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:23,273" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.2748919, + "msecs": 274.0, + "relativeCreated": 25149.701132, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:23,274" + } + ], + "time_consumption": 0.09791302680969238 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.373164, + "msecs": 373.0, + "relativeCreated": 25247.973139, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:23,373", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.373056, + "msecs": 373.0, + "relativeCreated": 25247.865264, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:23,373" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.3731208, + "msecs": 373.0, + "relativeCreated": 25247.930006, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:23,373" + } + ], + "time_consumption": 4.315376281738281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.livingroom.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.4738257, + "msecs": 473.0, + "relativeCreated": 25348.635105, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.livingroom.main_light) to 10", + "asctime": "2025-08-22 20:54:23,473", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.3733258, + "msecs": 373.0, + "relativeCreated": 25248.13517, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:23,373" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.3744245, + "msecs": 374.0, + "relativeCreated": 25249.233684, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:23,374" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.3758957, + "msecs": 375.0, + "relativeCreated": 25250.705141, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:23,375" + } + ], + "time_consumption": 0.0979299545288086 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.4741793, + "msecs": 474.0, + "relativeCreated": 25348.988549, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.livingroom.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:23,474", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.474052, + "msecs": 474.0, + "relativeCreated": 25348.861067, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:23,474" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.livingroom.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.4741366, + "msecs": 474.0, + "relativeCreated": 25348.945879, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.livingroom.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:23,474" + } + ], + "time_consumption": 4.267692565917969e-05 + } + ], + "time_consumption": 0.8076691627502441, + "time_start": "2025-08-22 20:54:22,666", + "time_finished": "2025-08-22 20:54:23,474" + }, + "ViDevHeating.temp_setp (ffw.livingroom.heating_valve) -> HeatingValve.temp_setp (ffw.livingroom.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (ffw.livingroom.heating_valve) -> HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888863.474403, + "msecs": 474.0, + "relativeCreated": 25349.212159, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (ffw.livingroom.heating_valve) -> HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "asctime": "2025-08-22 20:54:23,474", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888863.5750768, + "msecs": 575.0, + "relativeCreated": 25449.886171, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:23,575", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.4745386, + "msecs": 474.0, + "relativeCreated": 25349.347844, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:23,474" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.4748487, + "msecs": 474.0, + "relativeCreated": 25349.657951, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:23,474" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.5164375, + "msecs": 516.0, + "relativeCreated": 25391.246708, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:23,516" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.5326383, + "msecs": 532.0, + "relativeCreated": 25407.447479, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:23,532" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.5331514, + "msecs": 533.0, + "relativeCreated": 25407.960806, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:23,533" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.5334425, + "msecs": 533.0, + "relativeCreated": 25408.251774, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:23,533" + } + ], + "time_consumption": 0.041634321212768555 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.5753927, + "msecs": 575.0, + "relativeCreated": 25450.201901, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:23,575", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.5753021, + "msecs": 575.0, + "relativeCreated": 25450.111457, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:23,575" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.5753548, + "msecs": 575.0, + "relativeCreated": 25450.164223, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:23,575" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.livingroom.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.6759818, + "msecs": 675.0, + "relativeCreated": 25550.790983, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.livingroom.heating_valve) to 15", + "asctime": "2025-08-22 20:54:23,675", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.5754955, + "msecs": 575.0, + "relativeCreated": 25450.304681, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:23,575" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.5823858, + "msecs": 582.0, + "relativeCreated": 25457.194844, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:23,582" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.5826347, + "msecs": 582.0, + "relativeCreated": 25457.444018, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:23,582" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/valve_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.582943, + "msecs": 582.0, + "relativeCreated": 25457.752318, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:23,582" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.58324, + "msecs": 583.0, + "relativeCreated": 25458.049277, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:23,583" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.583581, + "msecs": 583.0, + "relativeCreated": 25458.390125, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:23,583" + } + ], + "time_consumption": 0.09240078926086426 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.6763499, + "msecs": 676.0, + "relativeCreated": 25551.159124, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:23,676", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.676216, + "msecs": 676.0, + "relativeCreated": 25551.024935, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:23,676" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.676301, + "msecs": 676.0, + "relativeCreated": 25551.110214, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:23,676" + } + ], + "time_consumption": 4.887580871582031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.livingroom.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.7768505, + "msecs": 776.0, + "relativeCreated": 25651.659767, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.livingroom.heating_valve) to 20", + "asctime": "2025-08-22 20:54:23,776", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.676468, + "msecs": 676.0, + "relativeCreated": 25551.277228, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:23,676" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.6849642, + "msecs": 684.0, + "relativeCreated": 25559.773396, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:23,684" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.6852157, + "msecs": 685.0, + "relativeCreated": 25560.024972, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:23,685" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.6855576, + "msecs": 685.0, + "relativeCreated": 25560.366732, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:23,685" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.6859603, + "msecs": 685.0, + "relativeCreated": 25560.769404, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:23,685" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.6862085, + "msecs": 686.0, + "relativeCreated": 25561.017643, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:23,686" + } + ], + "time_consumption": 0.09064197540283203 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.7772007, + "msecs": 777.0, + "relativeCreated": 25652.009828, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:23,777", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.7771063, + "msecs": 777.0, + "relativeCreated": 25651.915428, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:23,777" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.777161, + "msecs": 777.0, + "relativeCreated": 25651.970075, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:23,777" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.livingroom.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.8778079, + "msecs": 877.0, + "relativeCreated": 25752.617217, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.livingroom.heating_valve) to 25", + "asctime": "2025-08-22 20:54:23,877", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.7773483, + "msecs": 777.0, + "relativeCreated": 25652.157516, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:23,777" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.78384, + "msecs": 783.0, + "relativeCreated": 25658.649266, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:23,783" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.7840607, + "msecs": 784.0, + "relativeCreated": 25658.869846, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:23,784" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.784398, + "msecs": 784.0, + "relativeCreated": 25659.207216, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:23,784" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.7847364, + "msecs": 784.0, + "relativeCreated": 25659.54581, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:23,784" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.785, + "msecs": 785.0, + "relativeCreated": 25659.809451, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:23,785" + } + ], + "time_consumption": 0.09280776977539062 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.8781397, + "msecs": 878.0, + "relativeCreated": 25752.948833, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:23,878", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.878027, + "msecs": 878.0, + "relativeCreated": 25752.836219, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:23,878" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.878079, + "msecs": 878.0, + "relativeCreated": 25752.888093, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:23,878" + } + ], + "time_consumption": 6.079673767089844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.livingroom.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888863.9786124, + "msecs": 978.0, + "relativeCreated": 25853.421683, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.livingroom.heating_valve) to 30", + "asctime": "2025-08-22 20:54:23,978", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.8782477, + "msecs": 878.0, + "relativeCreated": 25753.056988, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:23,878" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.8854837, + "msecs": 885.0, + "relativeCreated": 25760.292904, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:23,885" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.8857236, + "msecs": 885.0, + "relativeCreated": 25760.532869, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:23,885" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.8860364, + "msecs": 886.0, + "relativeCreated": 25760.845735, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:23,886" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.8863637, + "msecs": 886.0, + "relativeCreated": 25761.172776, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/livingroom/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:23,886" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.livingroom.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/livingroom/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888863.8866205, + "msecs": 886.0, + "relativeCreated": 25761.429645, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/livingroom/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:23,886" + } + ], + "time_consumption": 0.09199190139770508 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888863.9789553, + "msecs": 978.0, + "relativeCreated": 25853.764453, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:23,978", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888863.9788456, + "msecs": 978.0, + "relativeCreated": 25853.654971, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:23,978" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888863.978916, + "msecs": 978.0, + "relativeCreated": 25853.725176, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.livingroom.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:23,978" + } + ], + "time_consumption": 3.933906555175781e-05 + } + ], + "time_consumption": 0.5045523643493652, + "time_start": "2025-08-22 20:54:23,474", + "time_finished": "2025-08-22 20:54:23,978" + }, + "ViDevLight.state (ffw.sleep.main_light) -> Shelly.relay/0 (ffw.sleep.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffw.sleep.main_light) -> Shelly.relay/0 (ffw.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888863.9791489, + "msecs": 979.0, + "relativeCreated": 25853.958133, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffw.sleep.main_light) -> Shelly.relay/0 (ffw.sleep.main_light)", + "asctime": "2025-08-22 20:54:23,979", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888864.0797944, + "msecs": 79.0, + "relativeCreated": 25954.603719, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:24,079", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888863.9793024, + "msecs": 979.0, + "relativeCreated": 25854.111559, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:23,979" + } + ], + "time_consumption": 0.10049200057983398 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.0801191, + "msecs": 80.0, + "relativeCreated": 25954.928365, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:24,080", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.0800228, + "msecs": 80.0, + "relativeCreated": 25954.832137, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:24,080" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.08008, + "msecs": 80.0, + "relativeCreated": 25954.889316, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:24,080" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.sleep.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888864.180716, + "msecs": 180.0, + "relativeCreated": 26055.525145, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.sleep.main_light) to True", + "asctime": "2025-08-22 20:54:24,180", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.0802264, + "msecs": 80.0, + "relativeCreated": 25955.035488, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:24,080" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.0825484, + "msecs": 82.0, + "relativeCreated": 25957.357726, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:24,082" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.0828042, + "msecs": 82.0, + "relativeCreated": 25957.613364, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:24,082" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.0830135, + "msecs": 83.0, + "relativeCreated": 25957.822897, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:24,083" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.0835268, + "msecs": 83.0, + "relativeCreated": 25958.336136, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:24,083" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.0837998, + "msecs": 83.0, + "relativeCreated": 25958.60915, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:24,083" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.1253448, + "msecs": 125.0, + "relativeCreated": 26000.153989, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:24,125" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.1255918, + "msecs": 125.0, + "relativeCreated": 26000.401072, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:24,125" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.125903, + "msecs": 125.0, + "relativeCreated": 26000.712181, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:24,125" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.1262214, + "msecs": 126.0, + "relativeCreated": 26001.03044, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:24,126" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.1264818, + "msecs": 126.0, + "relativeCreated": 26001.290776, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:24,126" + } + ], + "time_consumption": 0.05423426628112793 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.1810353, + "msecs": 181.0, + "relativeCreated": 26055.844491, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.sleep.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:24,181", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.sleep.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.180924, + "msecs": 180.0, + "relativeCreated": 26055.733146, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.sleep.main_light)): True ()", + "asctime": "2025-08-22 20:54:24,180" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.sleep.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.1809945, + "msecs": 180.0, + "relativeCreated": 26055.803789, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.sleep.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:24,180" + } + ], + "time_consumption": 4.076957702636719e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.sleep.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888864.2816193, + "msecs": 281.0, + "relativeCreated": 26156.428312, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.sleep.main_light) to False", + "asctime": "2025-08-22 20:54:24,281", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.1811368, + "msecs": 181.0, + "relativeCreated": 26055.946163, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:24,181" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.1832647, + "msecs": 183.0, + "relativeCreated": 26058.073956, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:24,183" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.1834745, + "msecs": 183.0, + "relativeCreated": 26058.283754, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:24,183" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.1840882, + "msecs": 184.0, + "relativeCreated": 26058.897515, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:24,184" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.225783, + "msecs": 225.0, + "relativeCreated": 26100.592324, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:24,225" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.2260454, + "msecs": 226.0, + "relativeCreated": 26100.854667, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:24,226" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.2263558, + "msecs": 226.0, + "relativeCreated": 26101.16483, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:24,226" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.2268593, + "msecs": 226.0, + "relativeCreated": 26101.668475, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:24,226" + } + ], + "time_consumption": 0.054759979248046875 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.2819872, + "msecs": 281.0, + "relativeCreated": 26156.796201, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.sleep.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:24,281", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.sleep.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.2818756, + "msecs": 281.0, + "relativeCreated": 26156.684936, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.sleep.main_light)): False ()", + "asctime": "2025-08-22 20:54:24,281" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.sleep.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.281948, + "msecs": 281.0, + "relativeCreated": 26156.757346, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.sleep.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:24,281" + } + ], + "time_consumption": 3.910064697265625e-05 + } + ], + "time_consumption": 0.3028383255004883, + "time_start": "2025-08-22 20:54:23,979", + "time_finished": "2025-08-22 20:54:24,281" + }, + "Shelly.relay/0 (ffw.sleep.main_light) -> ViDevLight.state (ffw.sleep.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffw.sleep.main_light) -> ViDevLight.state (ffw.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888864.282179, + "msecs": 282.0, + "relativeCreated": 26156.988199, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffw.sleep.main_light) -> ViDevLight.state (ffw.sleep.main_light)", + "asctime": "2025-08-22 20:54:24,282", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888864.3826158, + "msecs": 382.0, + "relativeCreated": 26257.425103, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:24,382", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.2823105, + "msecs": 282.0, + "relativeCreated": 26157.119594, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:24,282" + } + ], + "time_consumption": 0.10030531883239746 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.3829944, + "msecs": 382.0, + "relativeCreated": 26257.803646, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:24,382", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.3828714, + "msecs": 382.0, + "relativeCreated": 26257.680418, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:24,382" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.3829517, + "msecs": 382.0, + "relativeCreated": 26257.760977, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:24,382" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.sleep.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888864.483791, + "msecs": 483.0, + "relativeCreated": 26358.600254, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.sleep.main_light) to True", + "asctime": "2025-08-22 20:54:24,483", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.3831186, + "msecs": 383.0, + "relativeCreated": 26257.927816, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:24,383" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.3834016, + "msecs": 383.0, + "relativeCreated": 26258.211043, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:24,383" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.3842688, + "msecs": 384.0, + "relativeCreated": 26259.077999, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:24,384" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.3846087, + "msecs": 384.0, + "relativeCreated": 26259.418057, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:24,384" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.3870604, + "msecs": 387.0, + "relativeCreated": 26261.869736, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:24,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.3872592, + "msecs": 387.0, + "relativeCreated": 26262.068394, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:24,387" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.3875551, + "msecs": 387.0, + "relativeCreated": 26262.364402, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:24,387" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.3879967, + "msecs": 387.0, + "relativeCreated": 26262.805905, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:24,387" + } + ], + "time_consumption": 0.0957944393157959 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.4841015, + "msecs": 484.0, + "relativeCreated": 26358.910972, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.sleep.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:24,484", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.sleep.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.4840105, + "msecs": 484.0, + "relativeCreated": 26358.819743, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.sleep.main_light)): True ()", + "asctime": "2025-08-22 20:54:24,484" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.sleep.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.4840624, + "msecs": 484.0, + "relativeCreated": 26358.871809, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.sleep.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:24,484" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.sleep.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888864.5846152, + "msecs": 584.0, + "relativeCreated": 26459.424276, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.sleep.main_light) to False", + "asctime": "2025-08-22 20:54:24,584", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.4842129, + "msecs": 484.0, + "relativeCreated": 26359.022119, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:24,484" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.4852455, + "msecs": 485.0, + "relativeCreated": 26360.054568, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:24,485" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.486792, + "msecs": 486.0, + "relativeCreated": 26361.601432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:24,486" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.486999, + "msecs": 486.0, + "relativeCreated": 26361.808234, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:24,486" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.4873466, + "msecs": 487.0, + "relativeCreated": 26362.155948, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:24,487" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.487805, + "msecs": 487.0, + "relativeCreated": 26362.614114, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:24,487" + } + ], + "time_consumption": 0.09681034088134766 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.584912, + "msecs": 584.0, + "relativeCreated": 26459.721457, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.sleep.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:24,584", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.sleep.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.5848246, + "msecs": 584.0, + "relativeCreated": 26459.633795, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.sleep.main_light)): False ()", + "asctime": "2025-08-22 20:54:24,584" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.sleep.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.5848756, + "msecs": 584.0, + "relativeCreated": 26459.684677, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.sleep.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:24,584" + } + ], + "time_consumption": 3.647804260253906e-05 + } + ], + "time_consumption": 0.3027329444885254, + "time_start": "2025-08-22 20:54:24,282", + "time_finished": "2025-08-22 20:54:24,584" + }, + "ViDevLight.brightness (ffw.sleep.main_light) -> Light.brightness (ffw.sleep.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (ffw.sleep.main_light) -> Light.brightness (ffw.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888864.5850925, + "msecs": 585.0, + "relativeCreated": 26459.90181, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (ffw.sleep.main_light) -> Light.brightness (ffw.sleep.main_light)", + "asctime": "2025-08-22 20:54:24,585", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888864.685736, + "msecs": 685.0, + "relativeCreated": 26560.54523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:24,685", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.5852208, + "msecs": 585.0, + "relativeCreated": 26460.030215, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:24,585" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.5854876, + "msecs": 585.0, + "relativeCreated": 26460.296956, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2025-08-22 20:54:24,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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.5861168, + "msecs": 586.0, + "relativeCreated": 26460.926144, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:24,586" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.5864396, + "msecs": 586.0, + "relativeCreated": 26461.249033, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2025-08-22 20:54:24,586" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.6281068, + "msecs": 628.0, + "relativeCreated": 26502.91609, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:24,628" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.6283886, + "msecs": 628.0, + "relativeCreated": 26503.197838, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:24,628" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.628742, + "msecs": 628.0, + "relativeCreated": 26503.551141, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:24,628" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/window_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.629229, + "msecs": 629.0, + "relativeCreated": 26504.038357, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:24,629" + } + ], + "time_consumption": 0.05650687217712402 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888864.7866454, + "msecs": 786.0, + "relativeCreated": 26661.454765, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:24,786", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.6860197, + "msecs": 686.0, + "relativeCreated": 26560.828799, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:24,686" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.6862988, + "msecs": 686.0, + "relativeCreated": 26561.108191, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0}", + "asctime": "2025-08-22 20:54:24,686" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.6883392, + "msecs": 688.0, + "relativeCreated": 26563.148416, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:24,688" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.688703, + "msecs": 688.0, + "relativeCreated": 26563.512298, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", + "asctime": "2025-08-22 20:54:24,688" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.730786, + "msecs": 730.0, + "relativeCreated": 26605.595338, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:24,730" + } + ], + "time_consumption": 0.05585932731628418 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.7870216, + "msecs": 787.0, + "relativeCreated": 26661.830929, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:24,787", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.7869043, + "msecs": 786.0, + "relativeCreated": 26661.713443, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:24,786" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.7869813, + "msecs": 786.0, + "relativeCreated": 26661.790526, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:24,786" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.sleep.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888864.8883011, + "msecs": 888.0, + "relativeCreated": 26763.110399, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.sleep.main_light) to 0", + "asctime": "2025-08-22 20:54:24,888", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.7878077, + "msecs": 787.0, + "relativeCreated": 26662.616934, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:24,787" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.7902336, + "msecs": 790.0, + "relativeCreated": 26665.042878, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:24,790" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 1.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.790455, + "msecs": 790.0, + "relativeCreated": 26665.264297, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0}", + "asctime": "2025-08-22 20:54:24,790" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.7909825, + "msecs": 790.0, + "relativeCreated": 26665.791646, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", + "asctime": "2025-08-22 20:54:24,790" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.8325272, + "msecs": 832.0, + "relativeCreated": 26707.33636, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:24,832" + } + ], + "time_consumption": 0.05577397346496582 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.8886325, + "msecs": 888.0, + "relativeCreated": 26763.44186, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:24,888", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.8885317, + "msecs": 888.0, + "relativeCreated": 26763.340867, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.sleep.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:24,888" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.8885915, + "msecs": 888.0, + "relativeCreated": 26763.400865, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.sleep.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:24,888" + } + ], + "time_consumption": 4.100799560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.sleep.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888864.989288, + "msecs": 989.0, + "relativeCreated": 26864.097319, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.sleep.main_light) to 20", + "asctime": "2025-08-22 20:54:24,989", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.8888068, + "msecs": 888.0, + "relativeCreated": 26763.616208, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:24,888" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.8911428, + "msecs": 891.0, + "relativeCreated": 26765.95208, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:24,891" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 52.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.891383, + "msecs": 891.0, + "relativeCreated": 26766.19236, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0}", + "asctime": "2025-08-22 20:54:24,891" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.8919468, + "msecs": 891.0, + "relativeCreated": 26766.755868, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", + "asctime": "2025-08-22 20:54:24,891" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.93356, + "msecs": 933.0, + "relativeCreated": 26808.369064, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:24,933" + } + ], + "time_consumption": 0.05572819709777832 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888864.989598, + "msecs": 989.0, + "relativeCreated": 26864.407155, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:24,989", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888864.9895039, + "msecs": 989.0, + "relativeCreated": 26864.312972, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.sleep.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:24,989" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888864.9895582, + "msecs": 989.0, + "relativeCreated": 26864.367589, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.sleep.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:24,989" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.sleep.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.0901837, + "msecs": 90.0, + "relativeCreated": 26964.992918, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.sleep.main_light) to 40", + "asctime": "2025-08-22 20:54:25,090", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.9897237, + "msecs": 989.0, + "relativeCreated": 26864.53283, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:24,989" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.9916158, + "msecs": 991.0, + "relativeCreated": 26866.424862, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:24,991" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 102.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888864.991848, + "msecs": 991.0, + "relativeCreated": 26866.657286, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0}", + "asctime": "2025-08-22 20:54:24,991" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888864.992351, + "msecs": 992.0, + "relativeCreated": 26867.160139, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", + "asctime": "2025-08-22 20:54:24,992" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.0335686, + "msecs": 33.0, + "relativeCreated": 26908.377742, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:25,033" + } + ], + "time_consumption": 0.05661511421203613 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.0905147, + "msecs": 90.0, + "relativeCreated": 26965.324042, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:25,090", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.0903974, + "msecs": 90.0, + "relativeCreated": 26965.206595, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.sleep.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:25,090" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.0904512, + "msecs": 90.0, + "relativeCreated": 26965.260327, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.sleep.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:25,090" + } + ], + "time_consumption": 6.341934204101562e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.sleep.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.191, + "msecs": 191.0, + "relativeCreated": 27065.809236, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.sleep.main_light) to 60", + "asctime": "2025-08-22 20:54:25,191", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.0906196, + "msecs": 90.0, + "relativeCreated": 26965.42891, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:25,090" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.0929837, + "msecs": 92.0, + "relativeCreated": 26967.79297, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:25,092" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 153.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.0932121, + "msecs": 93.0, + "relativeCreated": 26968.021346, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0}", + "asctime": "2025-08-22 20:54:25,093" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.0937717, + "msecs": 93.0, + "relativeCreated": 26968.581034, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", + "asctime": "2025-08-22 20:54:25,093" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.1358693, + "msecs": 135.0, + "relativeCreated": 27010.678429, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:25,135" + } + ], + "time_consumption": 0.055130720138549805 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.1913369, + "msecs": 191.0, + "relativeCreated": 27066.146119, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:25,191", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.1912186, + "msecs": 191.0, + "relativeCreated": 27066.027996, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.sleep.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:25,191" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.1912978, + "msecs": 191.0, + "relativeCreated": 27066.107008, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.sleep.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:25,191" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.sleep.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.2919178, + "msecs": 291.0, + "relativeCreated": 27166.726997, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.sleep.main_light) to 80", + "asctime": "2025-08-22 20:54:25,291", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.1914418, + "msecs": 191.0, + "relativeCreated": 27066.250914, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:25,191" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.1939423, + "msecs": 193.0, + "relativeCreated": 27068.751514, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:25,193" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 203.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.1941586, + "msecs": 194.0, + "relativeCreated": 27068.967735, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0}", + "asctime": "2025-08-22 20:54:25,194" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.194703, + "msecs": 194.0, + "relativeCreated": 27069.512452, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", + "asctime": "2025-08-22 20:54:25,194" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.2357683, + "msecs": 235.0, + "relativeCreated": 27110.577494, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:25,235" + } + ], + "time_consumption": 0.05614948272705078 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.2922008, + "msecs": 292.0, + "relativeCreated": 27167.010052, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:25,292", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.292118, + "msecs": 292.0, + "relativeCreated": 27166.927174, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.sleep.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:25,292" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.2921672, + "msecs": 292.0, + "relativeCreated": 27166.97635, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.sleep.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:25,292" + } + ], + "time_consumption": 3.361701965332031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.sleep.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.3928013, + "msecs": 392.0, + "relativeCreated": 27267.610525, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.sleep.main_light) to 100", + "asctime": "2025-08-22 20:54:25,392", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.2922933, + "msecs": 292.0, + "relativeCreated": 27167.102694, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:25,292" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.2944157, + "msecs": 294.0, + "relativeCreated": 27169.224742, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:25,294" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.2946258, + "msecs": 294.0, + "relativeCreated": 27169.435111, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0}", + "asctime": "2025-08-22 20:54:25,294" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.2951906, + "msecs": 295.0, + "relativeCreated": 27169.999652, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", + "asctime": "2025-08-22 20:54:25,295" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.337394, + "msecs": 337.0, + "relativeCreated": 27212.20325, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:25,337" + } + ], + "time_consumption": 0.05540728569030762 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.3931077, + "msecs": 393.0, + "relativeCreated": 27267.917024, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.sleep.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:25,393", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.393018, + "msecs": 393.0, + "relativeCreated": 27267.8274, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.sleep.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:25,393" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.sleep.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.3930695, + "msecs": 393.0, + "relativeCreated": 27267.878852, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.sleep.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:25,393" + } + ], + "time_consumption": 3.814697265625e-05 + } + ], + "time_consumption": 0.8080151081085205, + "time_start": "2025-08-22 20:54:24,585", + "time_finished": "2025-08-22 20:54:25,393" + }, + "Light.brightness (ffw.sleep.main_light) -> ViDevLight.brightness (ffw.sleep.main_light)": { + "name": "__tLogger__", + "msg": "Light.brightness (ffw.sleep.main_light) -> ViDevLight.brightness (ffw.sleep.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888865.3933105, + "msecs": 393.0, + "relativeCreated": 27268.119784, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (ffw.sleep.main_light) -> ViDevLight.brightness (ffw.sleep.main_light)", + "asctime": "2025-08-22 20:54:25,393", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888865.49374, + "msecs": 493.0, + "relativeCreated": 27368.549249, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:25,493", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888865.5944078, + "msecs": 594.0, + "relativeCreated": 27469.217013, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:25,594", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.494021, + "msecs": 494.0, + "relativeCreated": 27368.830023, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:25,494" + } + ], + "time_consumption": 0.1003868579864502 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.594812, + "msecs": 594.0, + "relativeCreated": 27469.621194, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:25,594", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.5946424, + "msecs": 594.0, + "relativeCreated": 27469.451685, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:25,594" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.5947669, + "msecs": 594.0, + "relativeCreated": 27469.576085, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:25,594" + } + ], + "time_consumption": 4.506111145019531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.sleep.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.6953487, + "msecs": 695.0, + "relativeCreated": 27570.157904, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.sleep.main_light) to 0", + "asctime": "2025-08-22 20:54:25,695", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 1.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.5949764, + "msecs": 594.0, + "relativeCreated": 27469.785763, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 1.0}", + "asctime": "2025-08-22 20:54:25,594" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.596045, + "msecs": 596.0, + "relativeCreated": 27470.854231, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0}'", + "asctime": "2025-08-22 20:54:25,596" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.597285, + "msecs": 597.0, + "relativeCreated": 27472.094265, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:25,597" + } + ], + "time_consumption": 0.09806370735168457 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.6956685, + "msecs": 695.0, + "relativeCreated": 27570.477669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:25,695", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.6955636, + "msecs": 695.0, + "relativeCreated": 27570.372655, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.sleep.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:25,695" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.6956153, + "msecs": 695.0, + "relativeCreated": 27570.424535, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.sleep.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:25,695" + } + ], + "time_consumption": 5.316734313964844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.sleep.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.7963352, + "msecs": 796.0, + "relativeCreated": 27671.144261, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.sleep.main_light) to 20", + "asctime": "2025-08-22 20:54:25,796", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 52.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.6958165, + "msecs": 695.0, + "relativeCreated": 27570.625642, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 52.0}", + "asctime": "2025-08-22 20:54:25,695" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.6968427, + "msecs": 696.0, + "relativeCreated": 27571.652071, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0}'", + "asctime": "2025-08-22 20:54:25,696" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.6987128, + "msecs": 698.0, + "relativeCreated": 27573.522092, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:25,698" + } + ], + "time_consumption": 0.09762239456176758 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.7966413, + "msecs": 796.0, + "relativeCreated": 27671.450572, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:25,796", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.7965522, + "msecs": 796.0, + "relativeCreated": 27671.361381, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.sleep.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:25,796" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.7966042, + "msecs": 796.0, + "relativeCreated": 27671.413466, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.sleep.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:25,796" + } + ], + "time_consumption": 3.719329833984375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.sleep.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.897434, + "msecs": 897.0, + "relativeCreated": 27772.24334, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.sleep.main_light) to 40", + "asctime": "2025-08-22 20:54:25,897", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 102.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.7968912, + "msecs": 796.0, + "relativeCreated": 27671.700425, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 102.0}", + "asctime": "2025-08-22 20:54:25,796" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.7979882, + "msecs": 797.0, + "relativeCreated": 27672.797309, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0}'", + "asctime": "2025-08-22 20:54:25,797" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.7992842, + "msecs": 799.0, + "relativeCreated": 27674.093582, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:25,799" + } + ], + "time_consumption": 0.09814977645874023 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.8977978, + "msecs": 897.0, + "relativeCreated": 27772.607027, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:25,897", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.8976974, + "msecs": 897.0, + "relativeCreated": 27772.506886, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.sleep.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:25,897" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.8977563, + "msecs": 897.0, + "relativeCreated": 27772.565667, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.sleep.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:25,897" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.sleep.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888865.9983292, + "msecs": 998.0, + "relativeCreated": 27873.138196, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.sleep.main_light) to 60", + "asctime": "2025-08-22 20:54:25,998", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 153.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.8979566, + "msecs": 897.0, + "relativeCreated": 27772.76575, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 153.0}", + "asctime": "2025-08-22 20:54:25,897" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.8990939, + "msecs": 899.0, + "relativeCreated": 27773.903115, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0}'", + "asctime": "2025-08-22 20:54:25,899" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.9005182, + "msecs": 900.0, + "relativeCreated": 27775.327432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:25,900" + } + ], + "time_consumption": 0.09781098365783691 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888865.99869, + "msecs": 998.0, + "relativeCreated": 27873.498949, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:25,998", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888865.998567, + "msecs": 998.0, + "relativeCreated": 27873.37639, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.sleep.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:25,998" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888865.9986296, + "msecs": 998.0, + "relativeCreated": 27873.438941, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.sleep.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:25,998" + } + ], + "time_consumption": 6.031990051269531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.sleep.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888866.0993488, + "msecs": 99.0, + "relativeCreated": 27974.158017, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.sleep.main_light) to 80", + "asctime": "2025-08-22 20:54:26,099", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 203.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888865.9988475, + "msecs": 998.0, + "relativeCreated": 27873.656644, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 203.0}", + "asctime": "2025-08-22 20:54:25,998" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888865.9997096, + "msecs": 999.0, + "relativeCreated": 27874.519052, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0}'", + "asctime": "2025-08-22 20:54:25,999" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.0009165, + "msecs": 0.0, + "relativeCreated": 27875.725749, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:26,000" + } + ], + "time_consumption": 0.09843230247497559 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.0997138, + "msecs": 99.0, + "relativeCreated": 27974.523146, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:26,099", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.099581, + "msecs": 99.0, + "relativeCreated": 27974.390078, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.sleep.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:26,099" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.099636, + "msecs": 99.0, + "relativeCreated": 27974.445113, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.sleep.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:26,099" + } + ], + "time_consumption": 7.772445678710938e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.sleep.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888866.2004175, + "msecs": 200.0, + "relativeCreated": 28075.226854, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.sleep.main_light) to 100", + "asctime": "2025-08-22 20:54:26,200", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 254.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.0999024, + "msecs": 99.0, + "relativeCreated": 27974.71177, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 254.0}", + "asctime": "2025-08-22 20:54:26,099" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.1010628, + "msecs": 101.0, + "relativeCreated": 27975.872008, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0}'", + "asctime": "2025-08-22 20:54:26,101" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.1024327, + "msecs": 102.0, + "relativeCreated": 27977.242125, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:26,102" + } + ], + "time_consumption": 0.09798479080200195 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.2007842, + "msecs": 200.0, + "relativeCreated": 28075.593359, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.sleep.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:26,200", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.2006474, + "msecs": 200.0, + "relativeCreated": 28075.456568, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.sleep.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:26,200" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.sleep.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.2007415, + "msecs": 200.0, + "relativeCreated": 28075.550746, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.sleep.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:26,200" + } + ], + "time_consumption": 4.267692565917969e-05 + } + ], + "time_consumption": 0.8074736595153809, + "time_start": "2025-08-22 20:54:25,393", + "time_finished": "2025-08-22 20:54:26,200" + }, + "ViDevHeating.temp_setp (ffw.sleep.heating_valve) -> HeatingValve.temp_setp (ffw.sleep.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (ffw.sleep.heating_valve) -> HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888866.2010143, + "msecs": 201.0, + "relativeCreated": 28075.823465, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (ffw.sleep.heating_valve) -> HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "asctime": "2025-08-22 20:54:26,201", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888866.3016984, + "msecs": 301.0, + "relativeCreated": 28176.507673, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:26,301", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.2011788, + "msecs": 201.0, + "relativeCreated": 28075.988206, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:26,201" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.2014384, + "msecs": 201.0, + "relativeCreated": 28076.247625, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:26,201" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.2432897, + "msecs": 243.0, + "relativeCreated": 28118.098935, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:26,243" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.2450895, + "msecs": 245.0, + "relativeCreated": 28119.898896, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:26,245" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.245524, + "msecs": 245.0, + "relativeCreated": 28120.333277, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:26,245" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.245813, + "msecs": 245.0, + "relativeCreated": 28120.622262, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:26,245" + } + ], + "time_consumption": 0.05588555335998535 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.3020277, + "msecs": 302.0, + "relativeCreated": 28176.837047, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:26,302", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.3019304, + "msecs": 301.0, + "relativeCreated": 28176.739622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:26,301" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.3019855, + "msecs": 301.0, + "relativeCreated": 28176.794719, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:26,301" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.sleep.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888866.4026868, + "msecs": 402.0, + "relativeCreated": 28277.495942, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.sleep.heating_valve) to 15", + "asctime": "2025-08-22 20:54:26,402", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint/set", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.3021357, + "msecs": 302.0, + "relativeCreated": 28176.945002, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:26,302" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.3093348, + "msecs": 309.0, + "relativeCreated": 28184.1441, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:26,309" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.3096235, + "msecs": 309.0, + "relativeCreated": 28184.43271, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:26,309" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/valve_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.3099518, + "msecs": 309.0, + "relativeCreated": 28184.761025, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:26,309" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.3102705, + "msecs": 310.0, + "relativeCreated": 28185.079636, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:26,310" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.310564, + "msecs": 310.0, + "relativeCreated": 28185.37334, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:26,310" + } + ], + "time_consumption": 0.09212279319763184 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.4030197, + "msecs": 403.0, + "relativeCreated": 28277.829044, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:26,403", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.4029229, + "msecs": 402.0, + "relativeCreated": 28277.731978, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:26,402" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.402978, + "msecs": 402.0, + "relativeCreated": 28277.787404, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:26,402" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.sleep.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888866.503581, + "msecs": 503.0, + "relativeCreated": 28378.390276, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.sleep.heating_valve) to 20", + "asctime": "2025-08-22 20:54:26,503", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint/set", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.403134, + "msecs": 403.0, + "relativeCreated": 28277.943443, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:26,403" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.4105403, + "msecs": 410.0, + "relativeCreated": 28285.34949, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:26,410" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.410879, + "msecs": 410.0, + "relativeCreated": 28285.68823, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:26,410" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.41121, + "msecs": 411.0, + "relativeCreated": 28286.019239, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:26,411" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.4115505, + "msecs": 411.0, + "relativeCreated": 28286.359661, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:26,411" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.4119833, + "msecs": 411.0, + "relativeCreated": 28286.792612, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:26,411" + } + ], + "time_consumption": 0.0915977954864502 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.5039284, + "msecs": 503.0, + "relativeCreated": 28378.737464, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:26,503", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.5038154, + "msecs": 503.0, + "relativeCreated": 28378.624614, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:26,503" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.5038922, + "msecs": 503.0, + "relativeCreated": 28378.70157, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:26,503" + } + ], + "time_consumption": 3.62396240234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.sleep.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888866.6044502, + "msecs": 604.0, + "relativeCreated": 28479.259437, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.sleep.heating_valve) to 25", + "asctime": "2025-08-22 20:54:26,604", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.5040305, + "msecs": 504.0, + "relativeCreated": 28378.839625, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:26,504" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.511225, + "msecs": 511.0, + "relativeCreated": 28386.034264, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:26,511" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.5114791, + "msecs": 511.0, + "relativeCreated": 28386.288371, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:26,511" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.5117872, + "msecs": 511.0, + "relativeCreated": 28386.596528, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:26,511" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.5120857, + "msecs": 512.0, + "relativeCreated": 28386.894878, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:26,512" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.512297, + "msecs": 512.0, + "relativeCreated": 28387.106204, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:26,512" + } + ], + "time_consumption": 0.09215331077575684 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.604789, + "msecs": 604.0, + "relativeCreated": 28479.598221, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:26,604", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.604676, + "msecs": 604.0, + "relativeCreated": 28479.485348, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:26,604" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.6047518, + "msecs": 604.0, + "relativeCreated": 28479.561052, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:26,604" + } + ], + "time_consumption": 3.719329833984375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.sleep.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888866.7053576, + "msecs": 705.0, + "relativeCreated": 28580.166787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.sleep.heating_valve) to 30", + "asctime": "2025-08-22 20:54:26,705", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.6048949, + "msecs": 604.0, + "relativeCreated": 28479.704305, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:26,604" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.6117568, + "msecs": 611.0, + "relativeCreated": 28486.56608, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:26,611" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.6119587, + "msecs": 611.0, + "relativeCreated": 28486.768006, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/sleep/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:26,611" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.6122634, + "msecs": 612.0, + "relativeCreated": 28487.072758, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:26,612" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.6126015, + "msecs": 612.0, + "relativeCreated": 28487.410926, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/sleep/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:26,612" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.6128886, + "msecs": 612.0, + "relativeCreated": 28487.697832, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:26,612" + } + ], + "time_consumption": 0.0924689769744873 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.7057333, + "msecs": 705.0, + "relativeCreated": 28580.542734, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:26,705", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.705586, + "msecs": 705.0, + "relativeCreated": 28580.39521, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:26,705" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.705692, + "msecs": 705.0, + "relativeCreated": 28580.501363, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.sleep.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:26,705" + } + ], + "time_consumption": 4.124641418457031e-05 + } + ], + "time_consumption": 0.5047190189361572, + "time_start": "2025-08-22 20:54:26,201", + "time_finished": "2025-08-22 20:54:26,705" + }, + "ViDevLight.state (ffw.julian.main_light) -> Shelly.relay/0 (ffw.julian.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffw.julian.main_light) -> Shelly.relay/0 (ffw.julian.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888866.7059364, + "msecs": 705.0, + "relativeCreated": 28580.74553, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffw.julian.main_light) -> Shelly.relay/0 (ffw.julian.main_light)", + "asctime": "2025-08-22 20:54:26,705", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888866.8065639, + "msecs": 806.0, + "relativeCreated": 28681.372959, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:26,806", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.706089, + "msecs": 706.0, + "relativeCreated": 28580.898109, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:26,706" + } + ], + "time_consumption": 0.10047483444213867 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.8069444, + "msecs": 806.0, + "relativeCreated": 28681.753446, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:26,806", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.806842, + "msecs": 806.0, + "relativeCreated": 28681.6514, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:26,806" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.8069007, + "msecs": 806.0, + "relativeCreated": 28681.709949, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:26,806" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.julian.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888866.907443, + "msecs": 907.0, + "relativeCreated": 28782.252244, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.julian.main_light) to True", + "asctime": "2025-08-22 20:54:26,907", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.8070571, + "msecs": 807.0, + "relativeCreated": 28681.866442, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:26,807" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.8096428, + "msecs": 809.0, + "relativeCreated": 28684.452037, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:26,809" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.8099318, + "msecs": 809.0, + "relativeCreated": 28684.741101, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:26,809" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.8101933, + "msecs": 810.0, + "relativeCreated": 28685.002515, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:26,810" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.8109527, + "msecs": 810.0, + "relativeCreated": 28685.761984, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:26,810" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.811231, + "msecs": 811.0, + "relativeCreated": 28686.040311, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:26,811" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.8531394, + "msecs": 853.0, + "relativeCreated": 28727.948689, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:26,853" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.894533, + "msecs": 894.0, + "relativeCreated": 28769.342051, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:26,894" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.894937, + "msecs": 894.0, + "relativeCreated": 28769.746338, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5'", + "asctime": "2025-08-22 20:54:26,894" + } + ], + "time_consumption": 0.01250600814819336 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888866.907773, + "msecs": 907.0, + "relativeCreated": 28782.582132, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.julian.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:26,907", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.julian.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888866.9076781, + "msecs": 907.0, + "relativeCreated": 28782.487536, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.julian.main_light)): True ()", + "asctime": "2025-08-22 20:54:26,907" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.julian.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888866.907733, + "msecs": 907.0, + "relativeCreated": 28782.542239, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.julian.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:26,907" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.julian.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888867.0083587, + "msecs": 8.0, + "relativeCreated": 28883.167807, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.julian.main_light) to False", + "asctime": "2025-08-22 20:54:27,008", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.9078782, + "msecs": 907.0, + "relativeCreated": 28782.687462, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:26,907" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.9102647, + "msecs": 910.0, + "relativeCreated": 28785.074113, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:26,910" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888866.9105315, + "msecs": 910.0, + "relativeCreated": 28785.340877, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:26,910" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.9113657, + "msecs": 911.0, + "relativeCreated": 28786.174754, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:26,911" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888866.952967, + "msecs": 952.0, + "relativeCreated": 28827.776034, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:26,952" + } + ], + "time_consumption": 0.055391788482666016 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.0086992, + "msecs": 8.0, + "relativeCreated": 28883.508356, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.julian.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:27,008", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.julian.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.0085757, + "msecs": 8.0, + "relativeCreated": 28883.3849, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.julian.main_light)): False ()", + "asctime": "2025-08-22 20:54:27,008" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.julian.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.0086288, + "msecs": 8.0, + "relativeCreated": 28883.437991, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.julian.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:27,008" + } + ], + "time_consumption": 7.033348083496094e-05 + } + ], + "time_consumption": 0.3027627468109131, + "time_start": "2025-08-22 20:54:26,705", + "time_finished": "2025-08-22 20:54:27,008" + }, + "Shelly.relay/0 (ffw.julian.main_light) -> ViDevLight.state (ffw.julian.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffw.julian.main_light) -> ViDevLight.state (ffw.julian.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888867.008893, + "msecs": 8.0, + "relativeCreated": 28883.702093, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffw.julian.main_light) -> ViDevLight.state (ffw.julian.main_light)", + "asctime": "2025-08-22 20:54:27,008", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888867.1095183, + "msecs": 109.0, + "relativeCreated": 28984.327679, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:27,109", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.009024, + "msecs": 9.0, + "relativeCreated": 28883.833292, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:27,009" + } + ], + "time_consumption": 0.100494384765625 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.1099298, + "msecs": 109.0, + "relativeCreated": 28984.738966, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:27,109", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.1097944, + "msecs": 109.0, + "relativeCreated": 28984.603648, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:27,109" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.1098611, + "msecs": 109.0, + "relativeCreated": 28984.670418, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:27,109" + } + ], + "time_consumption": 6.866455078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.julian.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888867.2107916, + "msecs": 210.0, + "relativeCreated": 29085.600852, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.julian.main_light) to True", + "asctime": "2025-08-22 20:54:27,210", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.11006, + "msecs": 110.0, + "relativeCreated": 28984.869203, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:27,110" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.1103544, + "msecs": 110.0, + "relativeCreated": 28985.163595, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,110" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.1113546, + "msecs": 111.0, + "relativeCreated": 28986.163968, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:27,111" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.1117964, + "msecs": 111.0, + "relativeCreated": 28986.605692, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,111" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.1132212, + "msecs": 113.0, + "relativeCreated": 28988.030377, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:27,113" + } + ], + "time_consumption": 0.09757041931152344 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.211154, + "msecs": 211.0, + "relativeCreated": 29085.963201, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.julian.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:27,211", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.julian.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.2110298, + "msecs": 211.0, + "relativeCreated": 29085.838997, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.julian.main_light)): True ()", + "asctime": "2025-08-22 20:54:27,211" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.julian.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.2111127, + "msecs": 211.0, + "relativeCreated": 29085.921932, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.julian.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:27,211" + } + ], + "time_consumption": 4.124641418457031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.julian.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888867.3118224, + "msecs": 311.0, + "relativeCreated": 29186.631633, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.julian.main_light) to False", + "asctime": "2025-08-22 20:54:27,311", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.211272, + "msecs": 211.0, + "relativeCreated": 29086.081262, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:27,211" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.2124364, + "msecs": 212.0, + "relativeCreated": 29087.245612, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:27,212" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.2137127, + "msecs": 213.0, + "relativeCreated": 29088.521976, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:27,213" + } + ], + "time_consumption": 0.09810972213745117 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.3121815, + "msecs": 312.0, + "relativeCreated": 29186.990676, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.julian.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:27,312", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.julian.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.3120563, + "msecs": 312.0, + "relativeCreated": 29186.865571, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.julian.main_light)): False ()", + "asctime": "2025-08-22 20:54:27,312" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.julian.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.31214, + "msecs": 312.0, + "relativeCreated": 29186.949256, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.julian.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:27,312" + } + ], + "time_consumption": 4.1484832763671875e-05 + } + ], + "time_consumption": 0.30328845977783203, + "time_start": "2025-08-22 20:54:27,008", + "time_finished": "2025-08-22 20:54:27,312" + }, + "ViDevLight.brightness (ffw.julian.main_light) -> Light.brightness (ffw.julian.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (ffw.julian.main_light) -> Light.brightness (ffw.julian.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888867.312387, + "msecs": 312.0, + "relativeCreated": 29187.196389, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (ffw.julian.main_light) -> Light.brightness (ffw.julian.main_light)", + "asctime": "2025-08-22 20:54:27,312", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888867.4132555, + "msecs": 413.0, + "relativeCreated": 29288.064594, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:27,413", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.3125093, + "msecs": 312.0, + "relativeCreated": 29187.3185, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:27,312" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.3128498, + "msecs": 312.0, + "relativeCreated": 29187.658856, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,312" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.3137817, + "msecs": 313.0, + "relativeCreated": 29188.59092, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:27,313" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.3141758, + "msecs": 314.0, + "relativeCreated": 29188.984861, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,314" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.3551211, + "msecs": 355.0, + "relativeCreated": 29229.930313, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:27,355" + } + ], + "time_consumption": 0.05813431739807129 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888867.5142462, + "msecs": 514.0, + "relativeCreated": 29389.055305, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:27,514", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.4135559, + "msecs": 413.0, + "relativeCreated": 29288.365111, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:27,413" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.4139128, + "msecs": 413.0, + "relativeCreated": 29288.722031, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,413" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.4162734, + "msecs": 416.0, + "relativeCreated": 29291.082562, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:27,416" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.4166362, + "msecs": 416.0, + "relativeCreated": 29291.445466, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,416" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.4587898, + "msecs": 458.0, + "relativeCreated": 29333.599086, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:27,458" + } + ], + "time_consumption": 0.05545639991760254 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.5145717, + "msecs": 514.0, + "relativeCreated": 29389.381008, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:27,514", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.5144773, + "msecs": 514.0, + "relativeCreated": 29389.286454, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:27,514" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.5145319, + "msecs": 514.0, + "relativeCreated": 29389.34099, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:27,514" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.julian.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888867.615066, + "msecs": 615.0, + "relativeCreated": 29489.875267, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.julian.main_light) to 0", + "asctime": "2025-08-22 20:54:27,615", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.5147374, + "msecs": 514.0, + "relativeCreated": 29389.546751, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:27,514" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.517158, + "msecs": 517.0, + "relativeCreated": 29391.967286, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:27,517" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.5173798, + "msecs": 517.0, + "relativeCreated": 29392.189045, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,517" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.518048, + "msecs": 518.0, + "relativeCreated": 29392.857281, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,518" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.5602062, + "msecs": 560.0, + "relativeCreated": 29435.015258, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:27,560" + } + ], + "time_consumption": 0.05485987663269043 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.6153536, + "msecs": 615.0, + "relativeCreated": 29490.162775, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.julian.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:27,615", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.6152542, + "msecs": 615.0, + "relativeCreated": 29490.063425, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.julian.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:27,615" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.615312, + "msecs": 615.0, + "relativeCreated": 29490.121244, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.julian.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:27,615" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.julian.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888867.7158842, + "msecs": 715.0, + "relativeCreated": 29590.693583, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.julian.main_light) to 20", + "asctime": "2025-08-22 20:54:27,715", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.6154554, + "msecs": 615.0, + "relativeCreated": 29490.264806, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:27,615" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.6172044, + "msecs": 617.0, + "relativeCreated": 29492.013792, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:27,617" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.617411, + "msecs": 617.0, + "relativeCreated": 29492.220171, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,617" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.6179109, + "msecs": 617.0, + "relativeCreated": 29492.719924, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,617" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.6599917, + "msecs": 659.0, + "relativeCreated": 29534.801131, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:27,659" + } + ], + "time_consumption": 0.0558924674987793 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.716235, + "msecs": 716.0, + "relativeCreated": 29591.044283, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.julian.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:27,716", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.7161117, + "msecs": 716.0, + "relativeCreated": 29590.920905, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.julian.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:27,716" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.7161949, + "msecs": 716.0, + "relativeCreated": 29591.004144, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.julian.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:27,716" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.julian.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888867.8168175, + "msecs": 816.0, + "relativeCreated": 29691.626698, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.julian.main_light) to 40", + "asctime": "2025-08-22 20:54:27,816", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.7163408, + "msecs": 716.0, + "relativeCreated": 29591.149917, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:27,716" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.7186408, + "msecs": 718.0, + "relativeCreated": 29593.450209, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:27,718" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.7189038, + "msecs": 718.0, + "relativeCreated": 29593.713019, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,718" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.7196798, + "msecs": 719.0, + "relativeCreated": 29594.488926, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,719" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.760551, + "msecs": 760.0, + "relativeCreated": 29635.360056, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:27,760" + } + ], + "time_consumption": 0.05626654624938965 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.8171284, + "msecs": 817.0, + "relativeCreated": 29691.937619, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.julian.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:27,817", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.817039, + "msecs": 817.0, + "relativeCreated": 29691.848246, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.julian.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:27,817" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.8170907, + "msecs": 817.0, + "relativeCreated": 29691.900119, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.julian.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:27,817" + } + ], + "time_consumption": 3.7670135498046875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.julian.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888867.917789, + "msecs": 917.0, + "relativeCreated": 29792.598102, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.julian.main_light) to 60", + "asctime": "2025-08-22 20:54:27,917", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.8172348, + "msecs": 817.0, + "relativeCreated": 29692.043827, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:27,817" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.8196933, + "msecs": 819.0, + "relativeCreated": 29694.502671, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:27,819" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.81992, + "msecs": 819.0, + "relativeCreated": 29694.729251, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,819" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.8205545, + "msecs": 820.0, + "relativeCreated": 29695.363703, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,820" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.8620522, + "msecs": 862.0, + "relativeCreated": 29736.861411, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:27,862" + } + ], + "time_consumption": 0.05573678016662598 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888867.9180958, + "msecs": 918.0, + "relativeCreated": 29792.905004, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.julian.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:27,918", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888867.9180055, + "msecs": 918.0, + "relativeCreated": 29792.814779, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.julian.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:27,918" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888867.918058, + "msecs": 918.0, + "relativeCreated": 29792.867293, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.julian.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:27,918" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.julian.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.018705, + "msecs": 18.0, + "relativeCreated": 29893.514101, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.julian.main_light) to 80", + "asctime": "2025-08-22 20:54:28,018", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.9181988, + "msecs": 918.0, + "relativeCreated": 29793.008085, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:27,918" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.920596, + "msecs": 920.0, + "relativeCreated": 29795.405121, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:27,920" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888867.9208434, + "msecs": 920.0, + "relativeCreated": 29795.652502, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:27,920" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.9215267, + "msecs": 921.0, + "relativeCreated": 29796.335929, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:27,921" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888867.9625542, + "msecs": 962.0, + "relativeCreated": 29837.363232, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:27,962" + } + ], + "time_consumption": 0.05615067481994629 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.019038, + "msecs": 19.0, + "relativeCreated": 29893.847206, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.julian.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:28,019", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.0189397, + "msecs": 18.0, + "relativeCreated": 29893.748937, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.julian.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:28,018" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.0189998, + "msecs": 18.0, + "relativeCreated": 29893.808995, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.julian.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:28,018" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (ffw.julian.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.1196404, + "msecs": 119.0, + "relativeCreated": 29994.449443, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (ffw.julian.main_light) to 100", + "asctime": "2025-08-22 20:54:28,119", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.0191393, + "msecs": 19.0, + "relativeCreated": 29893.948508, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:28,019" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.0216453, + "msecs": 21.0, + "relativeCreated": 29896.454599, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:28,021" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.0218847, + "msecs": 21.0, + "relativeCreated": 29896.693979, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:28,021" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.0227165, + "msecs": 22.0, + "relativeCreated": 29897.52558, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:28,022" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.0633907, + "msecs": 63.0, + "relativeCreated": 29938.199859, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:28,063" + } + ], + "time_consumption": 0.05624961853027344 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.1199968, + "msecs": 119.0, + "relativeCreated": 29994.805821, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (ffw.julian.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:28,119", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.1198802, + "msecs": 119.0, + "relativeCreated": 29994.689526, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (ffw.julian.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:28,119" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (ffw.julian.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.1199572, + "msecs": 119.0, + "relativeCreated": 29994.766372, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (ffw.julian.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:28,119" + } + ], + "time_consumption": 3.9577484130859375e-05 + } + ], + "time_consumption": 0.8076097965240479, + "time_start": "2025-08-22 20:54:27,312", + "time_finished": "2025-08-22 20:54:28,119" + }, + "Light.brightness (ffw.julian.main_light) -> ViDevLight.brightness (ffw.julian.main_light)": { + "name": "__tLogger__", + "msg": "Light.brightness (ffw.julian.main_light) -> ViDevLight.brightness (ffw.julian.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888868.1201994, + "msecs": 120.0, + "relativeCreated": 29995.008694, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (ffw.julian.main_light) -> ViDevLight.brightness (ffw.julian.main_light)", + "asctime": "2025-08-22 20:54:28,120", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888868.2205877, + "msecs": 220.0, + "relativeCreated": 30095.397021, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:28,220", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888868.3214457, + "msecs": 321.0, + "relativeCreated": 30196.254895, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:28,321", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.2209074, + "msecs": 220.0, + "relativeCreated": 30095.716831, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:28,220" + } + ], + "time_consumption": 0.10053825378417969 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.321827, + "msecs": 321.0, + "relativeCreated": 30196.635935, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:28,321", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.3217204, + "msecs": 321.0, + "relativeCreated": 30196.529641, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:28,321" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.3217833, + "msecs": 321.0, + "relativeCreated": 30196.592593, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:28,321" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.julian.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.4225357, + "msecs": 422.0, + "relativeCreated": 30297.344923, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.julian.main_light) to 0", + "asctime": "2025-08-22 20:54:28,422", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.3219962, + "msecs": 321.0, + "relativeCreated": 30196.805529, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:28,321" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.3230104, + "msecs": 323.0, + "relativeCreated": 30197.81982, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:28,323" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.3245497, + "msecs": 324.0, + "relativeCreated": 30199.358833, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:28,324" + } + ], + "time_consumption": 0.09798598289489746 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.4229612, + "msecs": 422.0, + "relativeCreated": 30297.770394, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:28,422", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.422815, + "msecs": 422.0, + "relativeCreated": 30297.624295, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.julian.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:28,422" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.4229178, + "msecs": 422.0, + "relativeCreated": 30297.727025, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.julian.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:28,422" + } + ], + "time_consumption": 4.3392181396484375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.julian.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.5236306, + "msecs": 523.0, + "relativeCreated": 30398.439847, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.julian.main_light) to 20", + "asctime": "2025-08-22 20:54:28,523", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.4231224, + "msecs": 423.0, + "relativeCreated": 30297.931741, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:28,423" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.4241443, + "msecs": 424.0, + "relativeCreated": 30298.953538, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:28,424" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.4256113, + "msecs": 425.0, + "relativeCreated": 30300.420612, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:28,425" + } + ], + "time_consumption": 0.09801936149597168 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.524029, + "msecs": 524.0, + "relativeCreated": 30398.838091, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:28,524", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.5239043, + "msecs": 523.0, + "relativeCreated": 30398.713508, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.julian.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:28,523" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.5239856, + "msecs": 523.0, + "relativeCreated": 30398.794888, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.julian.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:28,523" + } + ], + "time_consumption": 4.3392181396484375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.julian.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.6245859, + "msecs": 624.0, + "relativeCreated": 30499.39517, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.julian.main_light) to 40", + "asctime": "2025-08-22 20:54:28,624", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.52419, + "msecs": 524.0, + "relativeCreated": 30398.999168, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:28,524" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.5252059, + "msecs": 525.0, + "relativeCreated": 30400.014991, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:28,525" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.5267534, + "msecs": 526.0, + "relativeCreated": 30401.562682, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:28,526" + } + ], + "time_consumption": 0.09783244132995605 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.6249218, + "msecs": 624.0, + "relativeCreated": 30499.73102, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:28,624", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.6248298, + "msecs": 624.0, + "relativeCreated": 30499.638946, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.julian.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:28,624" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.6248832, + "msecs": 624.0, + "relativeCreated": 30499.692517, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.julian.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:28,624" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.julian.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.725582, + "msecs": 725.0, + "relativeCreated": 30600.39101, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.julian.main_light) to 60", + "asctime": "2025-08-22 20:54:28,725", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.6250727, + "msecs": 625.0, + "relativeCreated": 30499.88179, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:28,625" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.6260433, + "msecs": 626.0, + "relativeCreated": 30500.852601, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:28,626" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.6273034, + "msecs": 627.0, + "relativeCreated": 30502.112763, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:28,627" + } + ], + "time_consumption": 0.09827852249145508 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.7259655, + "msecs": 725.0, + "relativeCreated": 30600.774799, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:28,725", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.7258728, + "msecs": 725.0, + "relativeCreated": 30600.681825, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.julian.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:28,725" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.7259276, + "msecs": 725.0, + "relativeCreated": 30600.737024, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.julian.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:28,725" + } + ], + "time_consumption": 3.790855407714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.julian.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.8266046, + "msecs": 826.0, + "relativeCreated": 30701.413835, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.julian.main_light) to 80", + "asctime": "2025-08-22 20:54:28,826", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.7261147, + "msecs": 726.0, + "relativeCreated": 30600.924026, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:28,726" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.7271347, + "msecs": 727.0, + "relativeCreated": 30601.943882, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:28,727" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.7284923, + "msecs": 728.0, + "relativeCreated": 30603.301426, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:28,728" + } + ], + "time_consumption": 0.09811234474182129 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.827005, + "msecs": 827.0, + "relativeCreated": 30701.814146, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:28,827", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.8268845, + "msecs": 826.0, + "relativeCreated": 30701.69394, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.julian.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:28,826" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.8269634, + "msecs": 826.0, + "relativeCreated": 30701.772643, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.julian.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:28,826" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (ffw.julian.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888868.927735, + "msecs": 927.0, + "relativeCreated": 30802.544255, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (ffw.julian.main_light) to 100", + "asctime": "2025-08-22 20:54:28,927", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888868.8271952, + "msecs": 827.0, + "relativeCreated": 30702.004365, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:28,827" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.8282127, + "msecs": 828.0, + "relativeCreated": 30703.021927, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:28,828" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888868.8294964, + "msecs": 829.0, + "relativeCreated": 30704.305446, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:28,829" + } + ], + "time_consumption": 0.09823870658874512 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888868.9280698, + "msecs": 928.0, + "relativeCreated": 30802.879017, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (ffw.julian.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:28,928", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888868.9279454, + "msecs": 927.0, + "relativeCreated": 30802.754624, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (ffw.julian.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:28,927" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (ffw.julian.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888868.9280238, + "msecs": 928.0, + "relativeCreated": 30802.833128, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (ffw.julian.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:28,928" + } + ], + "time_consumption": 4.601478576660156e-05 + } + ], + "time_consumption": 0.8078703880310059, + "time_start": "2025-08-22 20:54:28,120", + "time_finished": "2025-08-22 20:54:28,928" + }, + "ViDevLight.color_temp (ffw.julian.main_light) -> Light.color_temp (ffw.julian.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.color_temp (ffw.julian.main_light) -> Light.color_temp (ffw.julian.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888868.9282749, + "msecs": 928.0, + "relativeCreated": 30803.084286, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.color_temp (ffw.julian.main_light) -> Light.color_temp (ffw.julian.main_light)", + "asctime": "2025-08-22 20:54:28,928", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888869.0286877, + "msecs": 28.0, + "relativeCreated": 30903.49673, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:29,028", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888869.129732, + "msecs": 129.0, + "relativeCreated": 31004.541025, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:29,129", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.0289786, + "msecs": 28.0, + "relativeCreated": 30903.787891, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:29,028" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.0293183, + "msecs": 29.0, + "relativeCreated": 30904.127679, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:29,029" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.031611, + "msecs": 31.0, + "relativeCreated": 30906.42012, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:29,031" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.0319707, + "msecs": 31.0, + "relativeCreated": 30906.779962, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:29,031" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.0736144, + "msecs": 73.0, + "relativeCreated": 30948.423629, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:29,073" + } + ], + "time_consumption": 0.05611753463745117 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.1300762, + "msecs": 130.0, + "relativeCreated": 31004.885492, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:29,130", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.1299825, + "msecs": 129.0, + "relativeCreated": 31004.791701, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:29,129" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.1300368, + "msecs": 130.0, + "relativeCreated": 31004.845927, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:29,130" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.julian.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888869.2307081, + "msecs": 230.0, + "relativeCreated": 31105.517423, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.julian.main_light) to 0", + "asctime": "2025-08-22 20:54:29,230", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.130183, + "msecs": 130.0, + "relativeCreated": 31004.992051, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 0", + "asctime": "2025-08-22 20:54:29,130" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.1323712, + "msecs": 132.0, + "relativeCreated": 31007.180368, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:29,132" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.1326318, + "msecs": 132.0, + "relativeCreated": 31007.441036, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:29,132" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.1332786, + "msecs": 133.0, + "relativeCreated": 31008.088046, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:29,133" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.1749942, + "msecs": 174.0, + "relativeCreated": 31049.803322, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:29,174" + } + ], + "time_consumption": 0.05571389198303223 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.2310457, + "msecs": 231.0, + "relativeCreated": 31105.854845, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:29,231", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.2309303, + "msecs": 230.0, + "relativeCreated": 31105.73959, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.julian.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:29,230" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.2310076, + "msecs": 231.0, + "relativeCreated": 31105.816636, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.julian.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:29,231" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.julian.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888869.3316064, + "msecs": 331.0, + "relativeCreated": 31206.415616, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.julian.main_light) to 2", + "asctime": "2025-08-22 20:54:29,331", + "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", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.2311585, + "msecs": 231.0, + "relativeCreated": 31105.967847, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 2", + "asctime": "2025-08-22 20:54:29,231" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.2333856, + "msecs": 233.0, + "relativeCreated": 31108.194745, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:29,233" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.233633, + "msecs": 233.0, + "relativeCreated": 31108.442343, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:29,233" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.2341685, + "msecs": 234.0, + "relativeCreated": 31108.977895, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:29,234" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.2754822, + "msecs": 275.0, + "relativeCreated": 31150.291327, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:29,275" + } + ], + "time_consumption": 0.056124210357666016 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.3319683, + "msecs": 331.0, + "relativeCreated": 31206.777617, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:29,331", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.3318539, + "msecs": 331.0, + "relativeCreated": 31206.663114, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.julian.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:29,331" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.33193, + "msecs": 331.0, + "relativeCreated": 31206.739075, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.julian.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:29,331" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.julian.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888869.4324527, + "msecs": 432.0, + "relativeCreated": 31307.26188, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.julian.main_light) to 4", + "asctime": "2025-08-22 20:54:29,432", + "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", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.3320732, + "msecs": 332.0, + "relativeCreated": 31206.882434, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 4", + "asctime": "2025-08-22 20:54:29,332" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.3343794, + "msecs": 334.0, + "relativeCreated": 31209.188665, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:29,334" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.3346205, + "msecs": 334.0, + "relativeCreated": 31209.429535, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:29,334" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.3351882, + "msecs": 335.0, + "relativeCreated": 31209.997463, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:29,335" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.3770773, + "msecs": 377.0, + "relativeCreated": 31251.88658, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:29,377" + } + ], + "time_consumption": 0.05537533760070801 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.43279, + "msecs": 432.0, + "relativeCreated": 31307.599166, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:29,432", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.4326994, + "msecs": 432.0, + "relativeCreated": 31307.508588, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.julian.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:29,432" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.4327524, + "msecs": 432.0, + "relativeCreated": 31307.561662, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.julian.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:29,432" + } + ], + "time_consumption": 3.7670135498046875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.julian.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888869.5333734, + "msecs": 533.0, + "relativeCreated": 31408.182775, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.julian.main_light) to 6", + "asctime": "2025-08-22 20:54:29,533", + "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", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.4328976, + "msecs": 432.0, + "relativeCreated": 31307.70681, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 6", + "asctime": "2025-08-22 20:54:29,432" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.4353018, + "msecs": 435.0, + "relativeCreated": 31310.111162, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:29,435" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.4355597, + "msecs": 435.0, + "relativeCreated": 31310.36892, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:29,435" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.436199, + "msecs": 436.0, + "relativeCreated": 31311.008038, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:29,436" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.477557, + "msecs": 477.0, + "relativeCreated": 31352.366312, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:29,477" + } + ], + "time_consumption": 0.0558164119720459 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.5336475, + "msecs": 533.0, + "relativeCreated": 31408.456756, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:29,533", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.5335703, + "msecs": 533.0, + "relativeCreated": 31408.379611, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.julian.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:29,533" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.533615, + "msecs": 533.0, + "relativeCreated": 31408.424377, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.julian.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:29,533" + } + ], + "time_consumption": 3.24249267578125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.julian.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888869.634196, + "msecs": 634.0, + "relativeCreated": 31509.005104, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.julian.main_light) to 8", + "asctime": "2025-08-22 20:54:29,634", + "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", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.5337832, + "msecs": 533.0, + "relativeCreated": 31408.592605, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 8", + "asctime": "2025-08-22 20:54:29,533" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.5358667, + "msecs": 535.0, + "relativeCreated": 31410.67597, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:29,535" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.5361168, + "msecs": 536.0, + "relativeCreated": 31410.925935, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:29,536" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.5367556, + "msecs": 536.0, + "relativeCreated": 31411.56479, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:29,536" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.577487, + "msecs": 577.0, + "relativeCreated": 31452.296357, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:29,577" + } + ], + "time_consumption": 0.05670905113220215 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.6345303, + "msecs": 634.0, + "relativeCreated": 31509.33962, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:29,634", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.6344042, + "msecs": 634.0, + "relativeCreated": 31509.213314, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.julian.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:29,634" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.6344848, + "msecs": 634.0, + "relativeCreated": 31509.293885, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.julian.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:29,634" + } + ], + "time_consumption": 4.553794860839844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (ffw.julian.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888869.7351103, + "msecs": 735.0, + "relativeCreated": 31609.919738, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (ffw.julian.main_light) to 10", + "asctime": "2025-08-22 20:54:29,735", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.634639, + "msecs": 634.0, + "relativeCreated": 31509.448212, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:29,634" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.6368992, + "msecs": 636.0, + "relativeCreated": 31511.708586, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:29,636" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.6371384, + "msecs": 637.0, + "relativeCreated": 31511.947766, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:29,637" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.6376166, + "msecs": 637.0, + "relativeCreated": 31512.425899, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:29,637" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.6794202, + "msecs": 679.0, + "relativeCreated": 31554.2294, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:29,679" + } + ], + "time_consumption": 0.05569005012512207 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.735449, + "msecs": 735.0, + "relativeCreated": 31610.258388, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (ffw.julian.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:29,735", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.7353265, + "msecs": 735.0, + "relativeCreated": 31610.135713, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (ffw.julian.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:29,735" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (ffw.julian.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.735411, + "msecs": 735.0, + "relativeCreated": 31610.220079, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (ffw.julian.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:29,735" + } + ], + "time_consumption": 3.814697265625e-05 + } + ], + "time_consumption": 0.8071742057800293, + "time_start": "2025-08-22 20:54:28,928", + "time_finished": "2025-08-22 20:54:29,735" + }, + "Light.color_temp (ffw.julian.main_light) -> ViDevLight.color_temp (ffw.julian.main_light)": { + "name": "__tLogger__", + "msg": "Light.color_temp (ffw.julian.main_light) -> ViDevLight.color_temp (ffw.julian.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888869.7356834, + "msecs": 735.0, + "relativeCreated": 31610.492628, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.color_temp (ffw.julian.main_light) -> ViDevLight.color_temp (ffw.julian.main_light)", + "asctime": "2025-08-22 20:54:29,735", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888869.836041, + "msecs": 836.0, + "relativeCreated": 31710.850273, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:29,836", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888869.9368207, + "msecs": 936.0, + "relativeCreated": 31811.629855, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:29,936", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.8363194, + "msecs": 836.0, + "relativeCreated": 31711.128847, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:29,836" + } + ], + "time_consumption": 0.10050129890441895 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888869.9371576, + "msecs": 937.0, + "relativeCreated": 31811.966793, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:29,937", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888869.9370575, + "msecs": 937.0, + "relativeCreated": 31811.866806, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:29,937" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888869.9371147, + "msecs": 937.0, + "relativeCreated": 31811.923836, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:29,937" + } + ], + "time_consumption": 4.291534423828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.julian.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.037868, + "msecs": 37.0, + "relativeCreated": 31912.677182, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.julian.main_light) to 0", + "asctime": "2025-08-22 20:54:30,037", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888869.9373205, + "msecs": 937.0, + "relativeCreated": 31812.12979, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:29,937" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.9384198, + "msecs": 938.0, + "relativeCreated": 31813.228881, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:29,938" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888869.9398909, + "msecs": 939.0, + "relativeCreated": 31814.70021, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:29,939" + } + ], + "time_consumption": 0.0979771614074707 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.0382261, + "msecs": 38.0, + "relativeCreated": 31913.035529, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:30,038", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.0381045, + "msecs": 38.0, + "relativeCreated": 31912.913723, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.julian.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:30,038" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.038184, + "msecs": 38.0, + "relativeCreated": 31912.993264, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.julian.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:30,038" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.julian.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.1389115, + "msecs": 138.0, + "relativeCreated": 32013.720677, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.julian.main_light) to 2", + "asctime": "2025-08-22 20:54:30,138", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.0383897, + "msecs": 38.0, + "relativeCreated": 31913.19893, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:30,038" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.039372, + "msecs": 39.0, + "relativeCreated": 31914.181224, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:30,039" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.040888, + "msecs": 40.0, + "relativeCreated": 31915.697228, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:30,040" + } + ], + "time_consumption": 0.0980234146118164 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.1392598, + "msecs": 139.0, + "relativeCreated": 32014.069034, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:30,139", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.1391406, + "msecs": 139.0, + "relativeCreated": 32013.94985, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.julian.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:30,139" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.139218, + "msecs": 139.0, + "relativeCreated": 32014.027523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.julian.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:30,139" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.julian.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.2399418, + "msecs": 239.0, + "relativeCreated": 32114.751245, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.julian.main_light) to 4", + "asctime": "2025-08-22 20:54:30,239", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.1394327, + "msecs": 139.0, + "relativeCreated": 32014.241948, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:30,139" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.1404243, + "msecs": 140.0, + "relativeCreated": 32015.233483, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:30,140" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.1418247, + "msecs": 141.0, + "relativeCreated": 32016.634028, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:30,141" + } + ], + "time_consumption": 0.09811711311340332 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.240246, + "msecs": 240.0, + "relativeCreated": 32115.05515, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:30,240", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.2401571, + "msecs": 240.0, + "relativeCreated": 32114.96637, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.julian.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:30,240" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.2402072, + "msecs": 240.0, + "relativeCreated": 32115.016333, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.julian.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:30,240" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.julian.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.340912, + "msecs": 340.0, + "relativeCreated": 32215.72129, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.julian.main_light) to 6", + "asctime": "2025-08-22 20:54:30,340", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.2403953, + "msecs": 240.0, + "relativeCreated": 32115.204574, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:30,240" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.2414827, + "msecs": 241.0, + "relativeCreated": 32116.292003, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:30,241" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.2427523, + "msecs": 242.0, + "relativeCreated": 32117.561369, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:30,242" + } + ], + "time_consumption": 0.0981597900390625 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.3412204, + "msecs": 341.0, + "relativeCreated": 32216.029589, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:30,341", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.3411307, + "msecs": 341.0, + "relativeCreated": 32215.939895, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.julian.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:30,341" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.3411815, + "msecs": 341.0, + "relativeCreated": 32215.990636, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.julian.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:30,341" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.julian.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.441921, + "msecs": 441.0, + "relativeCreated": 32316.730279, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.julian.main_light) to 8", + "asctime": "2025-08-22 20:54:30,441", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.3413973, + "msecs": 341.0, + "relativeCreated": 32216.206445, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:30,341" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.342384, + "msecs": 342.0, + "relativeCreated": 32217.193438, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:30,342" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.3436441, + "msecs": 343.0, + "relativeCreated": 32218.453489, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:30,343" + } + ], + "time_consumption": 0.09827685356140137 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.4422753, + "msecs": 442.0, + "relativeCreated": 32317.084646, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:30,442", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.4421506, + "msecs": 442.0, + "relativeCreated": 32316.959843, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.julian.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:30,442" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.4422338, + "msecs": 442.0, + "relativeCreated": 32317.043115, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.julian.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:30,442" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (ffw.julian.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.5429611, + "msecs": 542.0, + "relativeCreated": 32417.770296, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (ffw.julian.main_light) to 10", + "asctime": "2025-08-22 20:54:30,542", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.4424434, + "msecs": 442.0, + "relativeCreated": 32317.252406, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:30,442" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.4434934, + "msecs": 443.0, + "relativeCreated": 32318.302556, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:30,443" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.4448931, + "msecs": 444.0, + "relativeCreated": 32319.702291, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:30,444" + } + ], + "time_consumption": 0.0980679988861084 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.543304, + "msecs": 543.0, + "relativeCreated": 32418.113119, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (ffw.julian.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:30,543", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.5431857, + "msecs": 543.0, + "relativeCreated": 32417.9948, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (ffw.julian.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:30,543" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (ffw.julian.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.5432625, + "msecs": 543.0, + "relativeCreated": 32418.071666, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (ffw.julian.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:30,543" + } + ], + "time_consumption": 4.1484832763671875e-05 + } + ], + "time_consumption": 0.8076205253601074, + "time_start": "2025-08-22 20:54:29,735", + "time_finished": "2025-08-22 20:54:30,543" + }, + "ViDevHeating.temp_setp (ffw.julian.heating_valve) -> HeatingValve.temp_setp (ffw.julian.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (ffw.julian.heating_valve) -> HeatingValve.temp_setp (ffw.julian.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888870.543526, + "msecs": 543.0, + "relativeCreated": 32418.335078, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (ffw.julian.heating_valve) -> HeatingValve.temp_setp (ffw.julian.heating_valve)", + "asctime": "2025-08-22 20:54:30,543", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888870.6443105, + "msecs": 644.0, + "relativeCreated": 32519.119666, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:30,644", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.5437152, + "msecs": 543.0, + "relativeCreated": 32418.524681, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:30,543" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.5439773, + "msecs": 543.0, + "relativeCreated": 32418.786473, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:30,543" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.5548613, + "msecs": 554.0, + "relativeCreated": 32429.670558, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:30,554" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.5553157, + "msecs": 555.0, + "relativeCreated": 32430.125045, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:30,555" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.5951698, + "msecs": 595.0, + "relativeCreated": 32469.97891, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:30,595" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.5955942, + "msecs": 595.0, + "relativeCreated": 32470.403441, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:30,595" + } + ], + "time_consumption": 0.04871630668640137 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.644646, + "msecs": 644.0, + "relativeCreated": 32519.455112, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:30,644", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.6445346, + "msecs": 644.0, + "relativeCreated": 32519.343769, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:30,644" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.6446085, + "msecs": 644.0, + "relativeCreated": 32519.417722, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:30,644" + } + ], + "time_consumption": 3.743171691894531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.julian.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.7451174, + "msecs": 745.0, + "relativeCreated": 32619.9267, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.julian.heating_valve) to 15", + "asctime": "2025-08-22 20:54:30,745", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint/set", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.6447794, + "msecs": 644.0, + "relativeCreated": 32519.588876, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:30,644" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.6523767, + "msecs": 652.0, + "relativeCreated": 32527.185778, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:30,652" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.652683, + "msecs": 652.0, + "relativeCreated": 32527.492222, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:30,652" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/valve_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.6530576, + "msecs": 653.0, + "relativeCreated": 32527.866873, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:30,653" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint", + "b'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.6533947, + "msecs": 653.0, + "relativeCreated": 32528.203965, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:30,653" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.6536064, + "msecs": 653.0, + "relativeCreated": 32528.415567, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:30,653" + } + ], + "time_consumption": 0.09151101112365723 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.7454214, + "msecs": 745.0, + "relativeCreated": 32620.230521, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:30,745", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.7453334, + "msecs": 745.0, + "relativeCreated": 32620.142692, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:30,745" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.7453837, + "msecs": 745.0, + "relativeCreated": 32620.192847, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:30,745" + } + ], + "time_consumption": 3.7670135498046875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.julian.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.8458934, + "msecs": 845.0, + "relativeCreated": 32720.702633, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.julian.heating_valve) to 20", + "asctime": "2025-08-22 20:54:30,845", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint/set", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.7455215, + "msecs": 745.0, + "relativeCreated": 32620.330969, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:30,745" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.752602, + "msecs": 752.0, + "relativeCreated": 32627.411448, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:30,752" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.7529109, + "msecs": 752.0, + "relativeCreated": 32627.71996, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:30,752" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.7532299, + "msecs": 753.0, + "relativeCreated": 32628.039067, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:30,753" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.7535536, + "msecs": 753.0, + "relativeCreated": 32628.362946, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:30,753" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.753806, + "msecs": 753.0, + "relativeCreated": 32628.615356, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:30,753" + } + ], + "time_consumption": 0.0920872688293457 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.846202, + "msecs": 846.0, + "relativeCreated": 32721.011201, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:30,846", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.846111, + "msecs": 846.0, + "relativeCreated": 32720.920109, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:30,846" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.8461618, + "msecs": 846.0, + "relativeCreated": 32720.971135, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:30,846" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.julian.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888870.9467034, + "msecs": 946.0, + "relativeCreated": 32821.512569, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.julian.heating_valve) to 25", + "asctime": "2025-08-22 20:54:30,946", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.846303, + "msecs": 846.0, + "relativeCreated": 32721.112122, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:30,846" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.853459, + "msecs": 853.0, + "relativeCreated": 32728.268271, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:30,853" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.853766, + "msecs": 853.0, + "relativeCreated": 32728.575199, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:30,853" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.8540883, + "msecs": 854.0, + "relativeCreated": 32728.897311, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:30,854" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.8544083, + "msecs": 854.0, + "relativeCreated": 32729.217305, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:30,854" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.854648, + "msecs": 854.0, + "relativeCreated": 32729.457395, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:30,854" + } + ], + "time_consumption": 0.0920553207397461 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888870.947007, + "msecs": 947.0, + "relativeCreated": 32821.816205, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:30,947", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888870.9469178, + "msecs": 946.0, + "relativeCreated": 32821.726994, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:30,946" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888870.9469683, + "msecs": 946.0, + "relativeCreated": 32821.777679, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:30,946" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.julian.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888871.0474865, + "msecs": 47.0, + "relativeCreated": 32922.295757, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.julian.heating_valve) to 30", + "asctime": "2025-08-22 20:54:31,047", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.9471111, + "msecs": 947.0, + "relativeCreated": 32821.920493, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:30,947" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.9543617, + "msecs": 954.0, + "relativeCreated": 32829.170922, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:30,954" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888870.9546406, + "msecs": 954.0, + "relativeCreated": 32829.449799, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/julian/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:30,954" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.954987, + "msecs": 954.0, + "relativeCreated": 32829.796356, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:30,954" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/heating_valve/user_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.9553034, + "msecs": 955.0, + "relativeCreated": 32830.112645, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/julian/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:30,955" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.julian.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/julian/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888870.9555652, + "msecs": 955.0, + "relativeCreated": 32830.37453, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/julian/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:30,955" + } + ], + "time_consumption": 0.09192132949829102 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.0478015, + "msecs": 47.0, + "relativeCreated": 32922.610746, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.julian.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:31,047", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.0476992, + "msecs": 47.0, + "relativeCreated": 32922.508499, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:31,047" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.julian.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.0477653, + "msecs": 47.0, + "relativeCreated": 32922.574384, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.julian.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:31,047" + } + ], + "time_consumption": 3.62396240234375e-05 + } + ], + "time_consumption": 0.5042755603790283, + "time_start": "2025-08-22 20:54:30,543", + "time_finished": "2025-08-22 20:54:31,047" + }, + "ViDevLight.state (ffw.bath.main_light) -> Shelly.relay/0 (ffw.bath.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffw.bath.main_light) -> Shelly.relay/0 (ffw.bath.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888871.0479796, + "msecs": 47.0, + "relativeCreated": 32922.788667, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffw.bath.main_light) -> Shelly.relay/0 (ffw.bath.main_light)", + "asctime": "2025-08-22 20:54:31,047", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888871.1485498, + "msecs": 148.0, + "relativeCreated": 33023.359096, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:31,148", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.0480907, + "msecs": 48.0, + "relativeCreated": 32922.899762, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:31,048" + } + ], + "time_consumption": 0.10045909881591797 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.148962, + "msecs": 148.0, + "relativeCreated": 33023.771409, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:31,148", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.1488273, + "msecs": 148.0, + "relativeCreated": 33023.636639, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:31,148" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.1489177, + "msecs": 148.0, + "relativeCreated": 33023.726985, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:31,148" + } + ], + "time_consumption": 4.4345855712890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.bath.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888871.2495847, + "msecs": 249.0, + "relativeCreated": 33124.393866, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.bath.main_light) to True", + "asctime": "2025-08-22 20:54:31,249", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.1490734, + "msecs": 149.0, + "relativeCreated": 33023.882741, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:31,149" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0/command", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.1515553, + "msecs": 151.0, + "relativeCreated": 33026.364446, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/bath/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:31,151" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.1518123, + "msecs": 151.0, + "relativeCreated": 33026.621587, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/bath/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:31,151" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.1524389, + "msecs": 152.0, + "relativeCreated": 33027.247968, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/bath/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:31,152" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.193459, + "msecs": 193.0, + "relativeCreated": 33068.268101, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:31,193" + } + ], + "time_consumption": 0.056125640869140625 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.bath.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.2499485, + "msecs": 249.0, + "relativeCreated": 33124.757753, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.bath.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:31,249", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.bath.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.2498298, + "msecs": 249.0, + "relativeCreated": 33124.639131, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.bath.main_light)): True ()", + "asctime": "2025-08-22 20:54:31,249" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.bath.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.2499082, + "msecs": 249.0, + "relativeCreated": 33124.71747, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.bath.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:31,249" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.bath.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888871.3505433, + "msecs": 350.0, + "relativeCreated": 33225.352701, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.bath.main_light) to False", + "asctime": "2025-08-22 20:54:31,350", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.2500515, + "msecs": 250.0, + "relativeCreated": 33124.860888, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:31,250" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.2523205, + "msecs": 252.0, + "relativeCreated": 33127.129651, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/bath/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:31,252" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.2525346, + "msecs": 252.0, + "relativeCreated": 33127.343835, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/bath/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:31,252" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.253149, + "msecs": 253.0, + "relativeCreated": 33127.95814, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/bath/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:31,253" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.294513, + "msecs": 294.0, + "relativeCreated": 33169.322052, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:31,294" + } + ], + "time_consumption": 0.0560302734375 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.bath.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.3509166, + "msecs": 350.0, + "relativeCreated": 33225.725962, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.bath.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:31,350", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.bath.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.3507934, + "msecs": 350.0, + "relativeCreated": 33225.602596, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.bath.main_light)): False ()", + "asctime": "2025-08-22 20:54:31,350" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.bath.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.3508782, + "msecs": 350.0, + "relativeCreated": 33225.687401, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.bath.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:31,350" + } + ], + "time_consumption": 3.838539123535156e-05 + } + ], + "time_consumption": 0.30293703079223633, + "time_start": "2025-08-22 20:54:31,047", + "time_finished": "2025-08-22 20:54:31,350" + }, + "Shelly.relay/0 (ffw.bath.main_light) -> ViDevLight.state (ffw.bath.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffw.bath.main_light) -> ViDevLight.state (ffw.bath.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888871.3511138, + "msecs": 351.0, + "relativeCreated": 33225.922896, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffw.bath.main_light) -> ViDevLight.state (ffw.bath.main_light)", + "asctime": "2025-08-22 20:54:31,351", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888871.451752, + "msecs": 451.0, + "relativeCreated": 33326.561066, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:31,451", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.3512485, + "msecs": 351.0, + "relativeCreated": 33226.057614, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:31,351" + } + ], + "time_consumption": 0.10050344467163086 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.4520926, + "msecs": 452.0, + "relativeCreated": 33326.902027, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:31,452", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.4519978, + "msecs": 451.0, + "relativeCreated": 33326.806909, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:31,451" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.4520528, + "msecs": 452.0, + "relativeCreated": 33326.861854, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:31,452" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.bath.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888871.5527525, + "msecs": 552.0, + "relativeCreated": 33427.561578, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.bath.main_light) to True", + "asctime": "2025-08-22 20:54:31,552", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.4522047, + "msecs": 452.0, + "relativeCreated": 33327.01415, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/bath/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:31,452" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.4539816, + "msecs": 453.0, + "relativeCreated": 33328.790893, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/bath/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:31,453" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.4544864, + "msecs": 454.0, + "relativeCreated": 33329.295383, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:31,454" + } + ], + "time_consumption": 0.0982661247253418 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.bath.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.5530736, + "msecs": 553.0, + "relativeCreated": 33427.882851, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.bath.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:31,553", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.bath.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.5529764, + "msecs": 552.0, + "relativeCreated": 33427.785673, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.bath.main_light)): True ()", + "asctime": "2025-08-22 20:54:31,552" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.bath.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.5530324, + "msecs": 553.0, + "relativeCreated": 33427.841771, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.bath.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:31,553" + } + ], + "time_consumption": 4.124641418457031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.bath.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888871.6535718, + "msecs": 653.0, + "relativeCreated": 33528.381077, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.bath.main_light) to False", + "asctime": "2025-08-22 20:54:31,653", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.5531864, + "msecs": 553.0, + "relativeCreated": 33427.995489, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/bath/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:31,553" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.bath.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/bath/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.5542252, + "msecs": 554.0, + "relativeCreated": 33429.03427, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/bath/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:31,554" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.5556173, + "msecs": 555.0, + "relativeCreated": 33430.426583, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:31,555" + } + ], + "time_consumption": 0.09795451164245605 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.bath.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.6538978, + "msecs": 653.0, + "relativeCreated": 33528.706871, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.bath.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:31,653", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.bath.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.6538, + "msecs": 653.0, + "relativeCreated": 33528.609046, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.bath.main_light)): False ()", + "asctime": "2025-08-22 20:54:31,653" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.bath.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.6538544, + "msecs": 653.0, + "relativeCreated": 33528.663672, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.bath.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:31,653" + } + ], + "time_consumption": 4.3392181396484375e-05 + } + ], + "time_consumption": 0.3027839660644531, + "time_start": "2025-08-22 20:54:31,351", + "time_finished": "2025-08-22 20:54:31,653" + }, + "ViDevHeating.temp_setp (ffw.bath.heating_valve) -> HeatingValve.temp_setp (ffw.bath.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (ffw.bath.heating_valve) -> HeatingValve.temp_setp (ffw.bath.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888871.6541145, + "msecs": 654.0, + "relativeCreated": 33528.923786, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (ffw.bath.heating_valve) -> HeatingValve.temp_setp (ffw.bath.heating_valve)", + "asctime": "2025-08-22 20:54:31,654", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888871.7547567, + "msecs": 754.0, + "relativeCreated": 33629.565854, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:31,754", + "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", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.6542475, + "msecs": 654.0, + "relativeCreated": 33529.056715, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:31,654" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.6545124, + "msecs": 654.0, + "relativeCreated": 33529.321657, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:31,654" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.6640146, + "msecs": 664.0, + "relativeCreated": 33538.823813, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:31,664" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.6644661, + "msecs": 664.0, + "relativeCreated": 33539.27536, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:31,664" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.6648371, + "msecs": 664.0, + "relativeCreated": 33539.646373, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:31,664" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.7059734, + "msecs": 705.0, + "relativeCreated": 33580.78264, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:31,705" + } + ], + "time_consumption": 0.048783302307128906 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.7550766, + "msecs": 755.0, + "relativeCreated": 33629.885824, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:31,755", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.7549803, + "msecs": 754.0, + "relativeCreated": 33629.78958, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:31,754" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.755035, + "msecs": 755.0, + "relativeCreated": 33629.844024, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:31,755" + } + ], + "time_consumption": 4.172325134277344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.bath.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888871.8555417, + "msecs": 855.0, + "relativeCreated": 33730.351016, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.bath.heating_valve) to 15", + "asctime": "2025-08-22 20:54:31,855", + "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", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.7551837, + "msecs": 755.0, + "relativeCreated": 33629.992769, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:31,755" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.762617, + "msecs": 762.0, + "relativeCreated": 33637.426403, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:31,762" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.7628603, + "msecs": 762.0, + "relativeCreated": 33637.669515, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:31,762" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.7631779, + "msecs": 763.0, + "relativeCreated": 33637.987315, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:31,763" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.7635002, + "msecs": 763.0, + "relativeCreated": 33638.309487, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:31,763" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.7637558, + "msecs": 763.0, + "relativeCreated": 33638.565022, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:31,763" + } + ], + "time_consumption": 0.09178590774536133 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.855868, + "msecs": 855.0, + "relativeCreated": 33730.677454, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:31,855", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.8557637, + "msecs": 855.0, + "relativeCreated": 33730.572912, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:31,855" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.855832, + "msecs": 855.0, + "relativeCreated": 33730.641278, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:31,855" + } + ], + "time_consumption": 3.600120544433594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.bath.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888871.9563403, + "msecs": 956.0, + "relativeCreated": 33831.149348, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.bath.heating_valve) to 20", + "asctime": "2025-08-22 20:54:31,956", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.8559735, + "msecs": 855.0, + "relativeCreated": 33730.782578, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:31,855" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.863045, + "msecs": 863.0, + "relativeCreated": 33737.854113, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:31,863" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.863242, + "msecs": 863.0, + "relativeCreated": 33738.051224, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:31,863" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.8635485, + "msecs": 863.0, + "relativeCreated": 33738.357539, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:31,863" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.8639102, + "msecs": 863.0, + "relativeCreated": 33738.719416, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:31,863" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.8641415, + "msecs": 864.0, + "relativeCreated": 33738.950898, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:31,864" + } + ], + "time_consumption": 0.09219884872436523 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888871.9566503, + "msecs": 956.0, + "relativeCreated": 33831.459463, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:31,956", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888871.9565444, + "msecs": 956.0, + "relativeCreated": 33831.353689, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:31,956" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888871.9566152, + "msecs": 956.0, + "relativeCreated": 33831.424386, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:31,956" + } + ], + "time_consumption": 3.504753112792969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.bath.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888872.057127, + "msecs": 57.0, + "relativeCreated": 33931.936124, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.bath.heating_valve) to 25", + "asctime": "2025-08-22 20:54:32,057", + "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", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.9567792, + "msecs": 956.0, + "relativeCreated": 33831.588538, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:31,956" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.9642696, + "msecs": 964.0, + "relativeCreated": 33839.078878, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:31,964" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888871.96447, + "msecs": 964.0, + "relativeCreated": 33839.279184, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:31,964" + }, + { + "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'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.9648125, + "msecs": 964.0, + "relativeCreated": 33839.621817, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:31,964" + }, + { + "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'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.965143, + "msecs": 965.0, + "relativeCreated": 33839.952325, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:31,965" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888871.965373, + "msecs": 965.0, + "relativeCreated": 33840.182202, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:31,965" + } + ], + "time_consumption": 0.09175395965576172 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.0574234, + "msecs": 57.0, + "relativeCreated": 33932.232482, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:32,057", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.0573254, + "msecs": 57.0, + "relativeCreated": 33932.134653, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:32,057" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.057372, + "msecs": 57.0, + "relativeCreated": 33932.181496, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:32,057" + } + ], + "time_consumption": 5.125999450683594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (ffw.bath.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888872.1579275, + "msecs": 157.0, + "relativeCreated": 34032.736626, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (ffw.bath.heating_valve) to 30", + "asctime": "2025-08-22 20:54:32,157", + "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", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.0575178, + "msecs": 57.0, + "relativeCreated": 33932.327114, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:32,057" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.0642471, + "msecs": 64.0, + "relativeCreated": 33939.056386, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:32,064" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.0644455, + "msecs": 64.0, + "relativeCreated": 33939.254751, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_ffw/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:32,064" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.0647593, + "msecs": 64.0, + "relativeCreated": 33939.568524, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:32,064" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.0650644, + "msecs": 65.0, + "relativeCreated": 33939.873742, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:32,065" + }, + { + "name": "smart_brain.mqtt.zigbee_ffw.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_ffw/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.065278, + "msecs": 65.0, + "relativeCreated": 33940.087219, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_ffw/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:32,065" + } + ], + "time_consumption": 0.09264945983886719 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.1582363, + "msecs": 158.0, + "relativeCreated": 34033.04533, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (ffw.bath.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:32,158", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.1581416, + "msecs": 158.0, + "relativeCreated": 34032.950838, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:32,158" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (ffw.bath.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.1581967, + "msecs": 158.0, + "relativeCreated": 34033.005982, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (ffw.bath.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:32,158" + } + ], + "time_consumption": 3.9577484130859375e-05 + } + ], + "time_consumption": 0.5041217803955078, + "time_start": "2025-08-22 20:54:31,654", + "time_finished": "2025-08-22 20:54:32,158" + }, + "ViDevLight.state (ffw.floor.main_light) -> Shelly.relay/0 (ffw.floor.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (ffw.floor.main_light) -> Shelly.relay/0 (ffw.floor.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888872.1584334, + "msecs": 158.0, + "relativeCreated": 34033.242736, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (ffw.floor.main_light) -> Shelly.relay/0 (ffw.floor.main_light)", + "asctime": "2025-08-22 20:54:32,158", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888872.2590938, + "msecs": 259.0, + "relativeCreated": 34133.902951, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:32,259", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.1585572, + "msecs": 158.0, + "relativeCreated": 34033.366437, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:32,158" + } + ], + "time_consumption": 0.10053658485412598 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.2594209, + "msecs": 259.0, + "relativeCreated": 34134.230064, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:32,259", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.2593174, + "msecs": 259.0, + "relativeCreated": 34134.126765, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:32,259" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.2593703, + "msecs": 259.0, + "relativeCreated": 34134.179408, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:32,259" + } + ], + "time_consumption": 5.054473876953125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.floor.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888872.360056, + "msecs": 360.0, + "relativeCreated": 34234.865077, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.floor.main_light) to True", + "asctime": "2025-08-22 20:54:32,360", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.2595353, + "msecs": 259.0, + "relativeCreated": 34134.344487, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/floor/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:32,259" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0/command", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.2619932, + "msecs": 261.0, + "relativeCreated": 34136.802408, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/floor/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:32,261" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.262209, + "msecs": 262.0, + "relativeCreated": 34137.018287, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:32,262" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.262909, + "msecs": 262.0, + "relativeCreated": 34137.718105, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:32,262" + }, + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.303933, + "msecs": 303.0, + "relativeCreated": 34178.742209, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:32,303" + } + ], + "time_consumption": 0.05612301826477051 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.3603895, + "msecs": 360.0, + "relativeCreated": 34235.198669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.floor.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:32,360", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.floor.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.3602731, + "msecs": 360.0, + "relativeCreated": 34235.082328, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.floor.main_light)): True ()", + "asctime": "2025-08-22 20:54:32,360" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.floor.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.3603249, + "msecs": 360.0, + "relativeCreated": 34235.133973, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.floor.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:32,360" + } + ], + "time_consumption": 6.461143493652344e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (ffw.floor.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888872.4609697, + "msecs": 460.0, + "relativeCreated": 34335.779001, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (ffw.floor.main_light) to False", + "asctime": "2025-08-22 20:54:32,460", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.3604927, + "msecs": 360.0, + "relativeCreated": 34235.302065, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:32,360" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.362739, + "msecs": 362.0, + "relativeCreated": 34237.548341, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/floor/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:32,362" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.3629825, + "msecs": 362.0, + "relativeCreated": 34237.791749, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:32,362" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.3637664, + "msecs": 363.0, + "relativeCreated": 34238.575748, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:32,363" + }, + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.4055743, + "msecs": 405.0, + "relativeCreated": 34280.383538, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:32,405" + } + ], + "time_consumption": 0.05539536476135254 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (ffw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.461294, + "msecs": 461.0, + "relativeCreated": 34336.103125, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (ffw.floor.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:32,461", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.floor.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.4611814, + "msecs": 461.0, + "relativeCreated": 34335.990802, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (ffw.floor.main_light)): False ()", + "asctime": "2025-08-22 20:54:32,461" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (ffw.floor.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.4612553, + "msecs": 461.0, + "relativeCreated": 34336.064649, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (ffw.floor.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:32,461" + } + ], + "time_consumption": 3.8623809814453125e-05 + } + ], + "time_consumption": 0.3028604984283447, + "time_start": "2025-08-22 20:54:32,158", + "time_finished": "2025-08-22 20:54:32,461" + }, + "Shelly.relay/0 (ffw.floor.main_light) -> ViDevLight.state (ffw.floor.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (ffw.floor.main_light) -> ViDevLight.state (ffw.floor.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888872.4614842, + "msecs": 461.0, + "relativeCreated": 34336.293608, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (ffw.floor.main_light) -> ViDevLight.state (ffw.floor.main_light)", + "asctime": "2025-08-22 20:54:32,461", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888872.561941, + "msecs": 561.0, + "relativeCreated": 34436.750329, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:32,561", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.4616022, + "msecs": 461.0, + "relativeCreated": 34336.411414, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/ffw/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:32,461" + } + ], + "time_consumption": 0.10033869743347168 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.5622697, + "msecs": 562.0, + "relativeCreated": 34437.078832, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:32,562", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.56216, + "msecs": 562.0, + "relativeCreated": 34436.969327, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:32,562" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.5622323, + "msecs": 562.0, + "relativeCreated": 34437.041519, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:32,562" + } + ], + "time_consumption": 3.743171691894531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.floor.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888872.6628551, + "msecs": 662.0, + "relativeCreated": 34537.664274, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.floor.main_light) to True", + "asctime": "2025-08-22 20:54:32,662", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.5623784, + "msecs": 562.0, + "relativeCreated": 34437.187715, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:32,562" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.563306, + "msecs": 563.0, + "relativeCreated": 34438.115282, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:32,563" + }, + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.5648446, + "msecs": 564.0, + "relativeCreated": 34439.653747, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:32,564" + } + ], + "time_consumption": 0.09801054000854492 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.6632066, + "msecs": 663.0, + "relativeCreated": 34538.015766, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.floor.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:32,663", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.floor.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.6630816, + "msecs": 663.0, + "relativeCreated": 34537.8909, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.floor.main_light)): True ()", + "asctime": "2025-08-22 20:54:32,663" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.floor.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.663165, + "msecs": 663.0, + "relativeCreated": 34537.974457, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.floor.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:32,663" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (ffw.floor.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888872.763857, + "msecs": 763.0, + "relativeCreated": 34638.666012, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (ffw.floor.main_light) to False", + "asctime": "2025-08-22 20:54:32,763", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.6633282, + "msecs": 663.0, + "relativeCreated": 34538.137498, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/ffw/floor/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:32,663" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/floor/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.6643624, + "msecs": 664.0, + "relativeCreated": 34539.1717, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/ffw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:32,664" + }, + { + "name": "smart_brain.mqtt.videv.ffw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/floor/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.6657856, + "msecs": 665.0, + "relativeCreated": 34540.594809, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/ffw/floor/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:32,665" + } + ], + "time_consumption": 0.09807133674621582 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (ffw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.7641807, + "msecs": 764.0, + "relativeCreated": 34638.990026, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (ffw.floor.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:32,764", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.floor.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.7640843, + "msecs": 764.0, + "relativeCreated": 34638.893428, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (ffw.floor.main_light)): False ()", + "asctime": "2025-08-22 20:54:32,764" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (ffw.floor.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.7641392, + "msecs": 764.0, + "relativeCreated": 34638.948608, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (ffw.floor.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:32,764" + } + ], + "time_consumption": 4.1484832763671875e-05 + } + ], + "time_consumption": 0.30269646644592285, + "time_start": "2025-08-22 20:54:32,461", + "time_finished": "2025-08-22 20:54:32,764" + }, + "ViDevLight.state (gfw.dirk.main_light) -> Shelly.relay/0 (gfw.dirk.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.dirk.main_light) -> Shelly.relay/0 (gfw.dirk.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888872.7644198, + "msecs": 764.0, + "relativeCreated": 34639.229021, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.dirk.main_light) -> Shelly.relay/0 (gfw.dirk.main_light)", + "asctime": "2025-08-22 20:54:32,764", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888872.8649666, + "msecs": 864.0, + "relativeCreated": 34739.775782, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:32,864", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.7645657, + "msecs": 764.0, + "relativeCreated": 34639.375053, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:32,764" + } + ], + "time_consumption": 0.10040092468261719 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.8653393, + "msecs": 865.0, + "relativeCreated": 34740.148554, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:32,865", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.8652093, + "msecs": 865.0, + "relativeCreated": 34740.018579, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:32,865" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.8652954, + "msecs": 865.0, + "relativeCreated": 34740.104668, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:32,865" + } + ], + "time_consumption": 4.38690185546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888872.96591, + "msecs": 965.0, + "relativeCreated": 34840.71931, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.main_light) to True", + "asctime": "2025-08-22 20:54:32,965", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.865455, + "msecs": 865.0, + "relativeCreated": 34740.264034, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:32,865" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.8679698, + "msecs": 867.0, + "relativeCreated": 34742.779057, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:32,867" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.8682284, + "msecs": 868.0, + "relativeCreated": 34743.037516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:32,868" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.86848, + "msecs": 868.0, + "relativeCreated": 34743.289111, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:32,868" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.8690488, + "msecs": 869.0, + "relativeCreated": 34743.858072, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:32,869" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.8693147, + "msecs": 869.0, + "relativeCreated": 34744.123873, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:32,869" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.9524684, + "msecs": 952.0, + "relativeCreated": 34827.277693, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:32,952" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.952912, + "msecs": 952.0, + "relativeCreated": 34827.721348, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:32,952" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.9531734, + "msecs": 953.0, + "relativeCreated": 34827.982732, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5'", + "asctime": "2025-08-22 20:54:32,953" + } + ], + "time_consumption": 0.01273655891418457 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888872.9662244, + "msecs": 966.0, + "relativeCreated": 34841.033565, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (gfw.dirk.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:32,966", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (gfw.dirk.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888872.9661326, + "msecs": 966.0, + "relativeCreated": 34840.94187, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (gfw.dirk.main_light)): True ()", + "asctime": "2025-08-22 20:54:32,966" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (gfw.dirk.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888872.9661853, + "msecs": 966.0, + "relativeCreated": 34840.994514, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (gfw.dirk.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:32,966" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888873.0668402, + "msecs": 66.0, + "relativeCreated": 34941.64923, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.main_light) to False", + "asctime": "2025-08-22 20:54:33,066", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.9663272, + "msecs": 966.0, + "relativeCreated": 34841.136421, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:32,966" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.9686425, + "msecs": 968.0, + "relativeCreated": 34843.451713, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:32,968" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888872.968927, + "msecs": 968.0, + "relativeCreated": 34843.736149, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:32,968" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888872.9696093, + "msecs": 969.0, + "relativeCreated": 34844.418482, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:32,969" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.0515447, + "msecs": 51.0, + "relativeCreated": 34926.353792, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:33,051" + } + ], + "time_consumption": 0.01529550552368164 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.0671482, + "msecs": 67.0, + "relativeCreated": 34941.95745, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (gfw.dirk.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:33,067", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Shelly.relay/0 (gfw.dirk.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.0670595, + "msecs": 67.0, + "relativeCreated": 34941.868589, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Shelly.relay/0 (gfw.dirk.main_light)): False ()", + "asctime": "2025-08-22 20:54:33,067" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Shelly.relay/0 (gfw.dirk.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.0671105, + "msecs": 67.0, + "relativeCreated": 34941.919958, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Shelly.relay/0 (gfw.dirk.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:33,067" + } + ], + "time_consumption": 3.7670135498046875e-05 + } + ], + "time_consumption": 0.30272841453552246, + "time_start": "2025-08-22 20:54:32,764", + "time_finished": "2025-08-22 20:54:33,067" + }, + "Shelly.relay/0 (gfw.dirk.main_light) -> ViDevLight.state (gfw.dirk.main_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (gfw.dirk.main_light) -> ViDevLight.state (gfw.dirk.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888873.0673683, + "msecs": 67.0, + "relativeCreated": 34942.177488, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (gfw.dirk.main_light) -> ViDevLight.state (gfw.dirk.main_light)", + "asctime": "2025-08-22 20:54:33,067", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888873.1680048, + "msecs": 168.0, + "relativeCreated": 35042.814086, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:33,168", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.0675004, + "msecs": 67.0, + "relativeCreated": 34942.309582, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:33,067" + } + ], + "time_consumption": 0.10050439834594727 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.1683288, + "msecs": 168.0, + "relativeCreated": 35043.137916, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:33,168", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.1682355, + "msecs": 168.0, + "relativeCreated": 35043.044761, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:33,168" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.1682885, + "msecs": 168.0, + "relativeCreated": 35043.097756, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:33,168" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (gfw.dirk.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888873.2692237, + "msecs": 269.0, + "relativeCreated": 35144.032947, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (gfw.dirk.main_light) to True", + "asctime": "2025-08-22 20:54:33,269", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.1684763, + "msecs": 168.0, + "relativeCreated": 35043.285744, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:33,168" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.1688077, + "msecs": 168.0, + "relativeCreated": 35043.616979, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:33,168" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.1698318, + "msecs": 169.0, + "relativeCreated": 35044.640965, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:33,169" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.2102103, + "msecs": 210.0, + "relativeCreated": 35085.019611, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:33,210" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.2124076, + "msecs": 212.0, + "relativeCreated": 35087.216735, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:33,212" + } + ], + "time_consumption": 0.05681610107421875 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.269592, + "msecs": 269.0, + "relativeCreated": 35144.401286, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:33,269", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.2694645, + "msecs": 269.0, + "relativeCreated": 35144.273914, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.main_light)): True ()", + "asctime": "2025-08-22 20:54:33,269" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.2695494, + "msecs": 269.0, + "relativeCreated": 35144.358523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:33,269" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (gfw.dirk.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888873.3702648, + "msecs": 370.0, + "relativeCreated": 35245.074076, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (gfw.dirk.main_light) to False", + "asctime": "2025-08-22 20:54:33,370", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.2697453, + "msecs": 269.0, + "relativeCreated": 35144.55455, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:33,269" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.2708108, + "msecs": 270.0, + "relativeCreated": 35145.620098, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:33,270" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.2725186, + "msecs": 272.0, + "relativeCreated": 35147.327771, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:33,272" + } + ], + "time_consumption": 0.09774613380432129 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.370618, + "msecs": 370.0, + "relativeCreated": 35245.427227, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:33,370", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.3704975, + "msecs": 370.0, + "relativeCreated": 35245.306677, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.main_light)): False ()", + "asctime": "2025-08-22 20:54:33,370" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.370576, + "msecs": 370.0, + "relativeCreated": 35245.385171, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:33,370" + } + ], + "time_consumption": 4.220008850097656e-05 + } + ], + "time_consumption": 0.3032498359680176, + "time_start": "2025-08-22 20:54:33,067", + "time_finished": "2025-08-22 20:54:33,370" + }, + "ViDevLight.state (gfw.dirk.desk_light) -> Light.state (gfw.dirk.desk_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.dirk.desk_light) -> Light.state (gfw.dirk.desk_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888873.3708518, + "msecs": 370.0, + "relativeCreated": 35245.661008, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.dirk.desk_light) -> Light.state (gfw.dirk.desk_light)", + "asctime": "2025-08-22 20:54:33,370", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888873.4713545, + "msecs": 471.0, + "relativeCreated": 35346.163579, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:33,471", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.3710012, + "msecs": 371.0, + "relativeCreated": 35245.810523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", + "asctime": "2025-08-22 20:54:33,371" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.3731825, + "msecs": 373.0, + "relativeCreated": 35247.991782, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:33,373" + } + ], + "time_consumption": 0.09817194938659668 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.4717116, + "msecs": 471.0, + "relativeCreated": 35346.521089, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:33,471", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.4715714, + "msecs": 471.0, + "relativeCreated": 35346.380628, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:33,471" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.4716437, + "msecs": 471.0, + "relativeCreated": 35346.453, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:33,471" + } + ], + "time_consumption": 6.794929504394531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.desk_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888873.5721598, + "msecs": 572.0, + "relativeCreated": 35446.968878, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.desk_light) to True", + "asctime": "2025-08-22 20:54:33,572", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.4718215, + "msecs": 471.0, + "relativeCreated": 35346.630765, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload true", + "asctime": "2025-08-22 20:54:33,471" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.4740272, + "msecs": 474.0, + "relativeCreated": 35348.836599, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:33,474" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.474265, + "msecs": 474.0, + "relativeCreated": 35349.074223, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:33,474" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.4750526, + "msecs": 475.0, + "relativeCreated": 35349.861784, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:33,475" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.5576925, + "msecs": 557.0, + "relativeCreated": 35432.501544, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:33,557" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.5580754, + "msecs": 558.0, + "relativeCreated": 35432.884653, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:33,558" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.5583115, + "msecs": 558.0, + "relativeCreated": 35433.120709, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5'", + "asctime": "2025-08-22 20:54:33,558" + } + ], + "time_consumption": 0.013848304748535156 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.5724528, + "msecs": 572.0, + "relativeCreated": 35447.262066, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (gfw.dirk.desk_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:33,572", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (gfw.dirk.desk_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.5723677, + "msecs": 572.0, + "relativeCreated": 35447.176902, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (gfw.dirk.desk_light)): True ()", + "asctime": "2025-08-22 20:54:33,572" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (gfw.dirk.desk_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.5724163, + "msecs": 572.0, + "relativeCreated": 35447.225367, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (gfw.dirk.desk_light)): result = True ()", + "asctime": "2025-08-22 20:54:33,572" + } + ], + "time_consumption": 3.647804260253906e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.desk_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888873.6729448, + "msecs": 672.0, + "relativeCreated": 35547.754033, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.desk_light) to False", + "asctime": "2025-08-22 20:54:33,672", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.5725574, + "msecs": 572.0, + "relativeCreated": 35447.366911, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", + "asctime": "2025-08-22 20:54:33,572" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.5747547, + "msecs": 574.0, + "relativeCreated": 35449.564082, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:33,574" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.5749671, + "msecs": 574.0, + "relativeCreated": 35449.776301, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:33,574" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.5755825, + "msecs": 575.0, + "relativeCreated": 35450.391632, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:33,575" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.6574194, + "msecs": 657.0, + "relativeCreated": 35532.228803, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:33,657" + } + ], + "time_consumption": 0.015525341033935547 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.6732683, + "msecs": 673.0, + "relativeCreated": 35548.077532, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (gfw.dirk.desk_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:33,673", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (gfw.dirk.desk_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.6731553, + "msecs": 673.0, + "relativeCreated": 35547.964437, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (gfw.dirk.desk_light)): False ()", + "asctime": "2025-08-22 20:54:33,673" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (gfw.dirk.desk_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.673231, + "msecs": 673.0, + "relativeCreated": 35548.040162, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (gfw.dirk.desk_light)): result = False ()", + "asctime": "2025-08-22 20:54:33,673" + } + ], + "time_consumption": 3.743171691894531e-05 + } + ], + "time_consumption": 0.3024165630340576, + "time_start": "2025-08-22 20:54:33,370", + "time_finished": "2025-08-22 20:54:33,673" + }, + "Light.state (gfw.dirk.desk_light) -> ViDevLight.state (gfw.dirk.desk_light)": { + "name": "__tLogger__", + "msg": "Light.state (gfw.dirk.desk_light) -> ViDevLight.state (gfw.dirk.desk_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888873.67346, + "msecs": 673.0, + "relativeCreated": 35548.269227, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.state (gfw.dirk.desk_light) -> ViDevLight.state (gfw.dirk.desk_light)", + "asctime": "2025-08-22 20:54:33,673", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888873.7740784, + "msecs": 774.0, + "relativeCreated": 35648.887658, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:33,774", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.6735969, + "msecs": 673.0, + "relativeCreated": 35548.406035, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", + "asctime": "2025-08-22 20:54:33,673" + } + ], + "time_consumption": 0.10048151016235352 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.7744274, + "msecs": 774.0, + "relativeCreated": 35649.236688, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:33,774", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.7743247, + "msecs": 774.0, + "relativeCreated": 35649.133911, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:33,774" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.7743838, + "msecs": 774.0, + "relativeCreated": 35649.19309, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:33,774" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.state (gfw.dirk.desk_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888873.875203, + "msecs": 875.0, + "relativeCreated": 35750.012168, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.state (gfw.dirk.desk_light) to True", + "asctime": "2025-08-22 20:54:33,875", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.7746015, + "msecs": 774.0, + "relativeCreated": 35649.410646, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:33,774" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.7758465, + "msecs": 775.0, + "relativeCreated": 35650.655698, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:33,775" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.8184927, + "msecs": 818.0, + "relativeCreated": 35693.302012, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:33,818" + } + ], + "time_consumption": 0.056710243225097656 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.8755646, + "msecs": 875.0, + "relativeCreated": 35750.373741, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.desk_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:33,875", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.desk_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.8754632, + "msecs": 875.0, + "relativeCreated": 35750.272509, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.desk_light)): True ()", + "asctime": "2025-08-22 20:54:33,875" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.desk_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.875521, + "msecs": 875.0, + "relativeCreated": 35750.330259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.desk_light)): result = True ()", + "asctime": "2025-08-22 20:54:33,875" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.state (gfw.dirk.desk_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888873.9761376, + "msecs": 976.0, + "relativeCreated": 35850.946881, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.state (gfw.dirk.desk_light) to False", + "asctime": "2025-08-22 20:54:33,976", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.8757718, + "msecs": 875.0, + "relativeCreated": 35750.580889, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:33,875" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.87694, + "msecs": 876.0, + "relativeCreated": 35751.749364, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:33,876" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888873.8788493, + "msecs": 878.0, + "relativeCreated": 35753.658446, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:33,878" + } + ], + "time_consumption": 0.09728837013244629 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888873.976487, + "msecs": 976.0, + "relativeCreated": 35851.296082, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.desk_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:33,976", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.desk_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888873.976367, + "msecs": 976.0, + "relativeCreated": 35851.176385, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.desk_light)): False ()", + "asctime": "2025-08-22 20:54:33,976" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.desk_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888873.9764414, + "msecs": 976.0, + "relativeCreated": 35851.250625, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.desk_light)): result = False ()", + "asctime": "2025-08-22 20:54:33,976" + } + ], + "time_consumption": 4.553794860839844e-05 + } + ], + "time_consumption": 0.3030269145965576, + "time_start": "2025-08-22 20:54:33,673", + "time_finished": "2025-08-22 20:54:33,976" + }, + "ViDevLight.state (gfw.dirk.pc_dock) -> Powerplug1P.state (gfw.dirk.dock)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.dirk.pc_dock) -> Powerplug1P.state (gfw.dirk.dock)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888873.9767241, + "msecs": 976.0, + "relativeCreated": 35851.533569, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.dirk.pc_dock) -> Powerplug1P.state (gfw.dirk.dock)", + "asctime": "2025-08-22 20:54:33,976", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888874.0773838, + "msecs": 77.0, + "relativeCreated": 35952.193036, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:34,077", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888873.976872, + "msecs": 976.0, + "relativeCreated": 35851.681108, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", + "asctime": "2025-08-22 20:54:33,976" + } + ], + "time_consumption": 0.10051178932189941 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.0777693, + "msecs": 77.0, + "relativeCreated": 35952.578425, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:34,077", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.0776236, + "msecs": 77.0, + "relativeCreated": 35952.432811, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:34,077" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.0777283, + "msecs": 77.0, + "relativeCreated": 35952.537586, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:34,077" + } + ], + "time_consumption": 4.100799560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.pc_dock)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888874.178283, + "msecs": 178.0, + "relativeCreated": 36053.092167, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.pc_dock) to True", + "asctime": "2025-08-22 20:54:34,178", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.0778987, + "msecs": 77.0, + "relativeCreated": 35952.708099, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload true", + "asctime": "2025-08-22 20:54:34,077" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.0804856, + "msecs": 80.0, + "relativeCreated": 35955.294964, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/dock/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:34,080" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.0807068, + "msecs": 80.0, + "relativeCreated": 35955.516106, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:34,080" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.08123, + "msecs": 81.0, + "relativeCreated": 35956.038975, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:34,081" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.1227224, + "msecs": 122.0, + "relativeCreated": 35997.53148, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", + "asctime": "2025-08-22 20:54:34,122" + } + ], + "time_consumption": 0.05556058883666992 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (gfw.dirk.dock) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.1786232, + "msecs": 178.0, + "relativeCreated": 36053.432585, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (gfw.dirk.dock) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:34,178", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (gfw.dirk.dock)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.1785042, + "msecs": 178.0, + "relativeCreated": 36053.313366, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (gfw.dirk.dock)): True ()", + "asctime": "2025-08-22 20:54:34,178" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (gfw.dirk.dock)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.1785824, + "msecs": 178.0, + "relativeCreated": 36053.391841, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (gfw.dirk.dock)): result = True ()", + "asctime": "2025-08-22 20:54:34,178" + } + ], + "time_consumption": 4.076957702636719e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.pc_dock)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888874.2791991, + "msecs": 279.0, + "relativeCreated": 36154.008373, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.pc_dock) to False", + "asctime": "2025-08-22 20:54:34,279", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.1787448, + "msecs": 178.0, + "relativeCreated": 36053.553968, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", + "asctime": "2025-08-22 20:54:34,178" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.1810856, + "msecs": 181.0, + "relativeCreated": 36055.894965, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/dock/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:34,181" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.1812956, + "msecs": 181.0, + "relativeCreated": 36056.104759, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:34,181" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.1819665, + "msecs": 181.0, + "relativeCreated": 36056.775885, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:34,181" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.2237096, + "msecs": 223.0, + "relativeCreated": 36098.518858, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", + "asctime": "2025-08-22 20:54:34,223" + } + ], + "time_consumption": 0.055489540100097656 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug1P.state (gfw.dirk.dock) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.279542, + "msecs": 279.0, + "relativeCreated": 36154.351126, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug1P.state (gfw.dirk.dock) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:34,279", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug1P.state (gfw.dirk.dock)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.2794225, + "msecs": 279.0, + "relativeCreated": 36154.231628, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug1P.state (gfw.dirk.dock)): False ()", + "asctime": "2025-08-22 20:54:34,279" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug1P.state (gfw.dirk.dock)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.2795005, + "msecs": 279.0, + "relativeCreated": 36154.309805, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug1P.state (gfw.dirk.dock)): result = False ()", + "asctime": "2025-08-22 20:54:34,279" + } + ], + "time_consumption": 4.1484832763671875e-05 + } + ], + "time_consumption": 0.30281782150268555, + "time_start": "2025-08-22 20:54:33,976", + "time_finished": "2025-08-22 20:54:34,279" + }, + "Powerplug1P.state (gfw.dirk.dock) -> ViDevLight.state (gfw.dirk.pc_dock)": { + "name": "__tLogger__", + "msg": "Powerplug1P.state (gfw.dirk.dock) -> ViDevLight.state (gfw.dirk.pc_dock)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888874.2797725, + "msecs": 279.0, + "relativeCreated": 36154.581526, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug1P.state (gfw.dirk.dock) -> ViDevLight.state (gfw.dirk.pc_dock)", + "asctime": "2025-08-22 20:54:34,279", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888874.380358, + "msecs": 380.0, + "relativeCreated": 36255.16713, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:34,380", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.2798965, + "msecs": 279.0, + "relativeCreated": 36154.705897, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", + "asctime": "2025-08-22 20:54:34,279" + } + ], + "time_consumption": 0.10046148300170898 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.3807693, + "msecs": 380.0, + "relativeCreated": 36255.578469, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:34,380", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.3805919, + "msecs": 380.0, + "relativeCreated": 36255.40109, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:34,380" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.380726, + "msecs": 380.0, + "relativeCreated": 36255.535163, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:34,380" + } + ], + "time_consumption": 4.315376281738281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (gfw.dirk.dock)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888874.4813876, + "msecs": 481.0, + "relativeCreated": 36356.196719, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (gfw.dirk.dock) to True", + "asctime": "2025-08-22 20:54:34,481", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.380903, + "msecs": 380.0, + "relativeCreated": 36255.712057, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"on\"}", + "asctime": "2025-08-22 20:54:34,380" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.3821166, + "msecs": 382.0, + "relativeCreated": 36256.925848, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:34,382" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.3836071, + "msecs": 383.0, + "relativeCreated": 36258.416315, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", + "asctime": "2025-08-22 20:54:34,383" + } + ], + "time_consumption": 0.09778046607971191 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.pc_dock) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.4817617, + "msecs": 481.0, + "relativeCreated": 36356.571101, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.pc_dock) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:34,481", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.pc_dock)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.481634, + "msecs": 481.0, + "relativeCreated": 36356.443138, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.pc_dock)): True ()", + "asctime": "2025-08-22 20:54:34,481" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.pc_dock)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.481719, + "msecs": 481.0, + "relativeCreated": 36356.528311, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.pc_dock)): result = True ()", + "asctime": "2025-08-22 20:54:34,481" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug1P.state (gfw.dirk.dock)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888874.5822964, + "msecs": 582.0, + "relativeCreated": 36457.105583, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug1P.state (gfw.dirk.dock) to False", + "asctime": "2025-08-22 20:54:34,582", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.4818945, + "msecs": 481.0, + "relativeCreated": 36356.703519, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/dock and payload {\"state\": \"off\"}", + "asctime": "2025-08-22 20:54:34,481" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.dock", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/dock", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.4830756, + "msecs": 483.0, + "relativeCreated": 36357.884915, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/dock and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:34,483" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.4844534, + "msecs": 484.0, + "relativeCreated": 36359.262715, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", + "asctime": "2025-08-22 20:54:34,484" + } + ], + "time_consumption": 0.09784293174743652 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.pc_dock) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.5826316, + "msecs": 582.0, + "relativeCreated": 36457.440804, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.pc_dock) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:34,582", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.pc_dock)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.5825336, + "msecs": 582.0, + "relativeCreated": 36457.342777, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.pc_dock)): False ()", + "asctime": "2025-08-22 20:54:34,582" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.pc_dock)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.582591, + "msecs": 582.0, + "relativeCreated": 36457.400084, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.pc_dock)): result = False ()", + "asctime": "2025-08-22 20:54:34,582" + } + ], + "time_consumption": 4.0531158447265625e-05 + } + ], + "time_consumption": 0.3028590679168701, + "time_start": "2025-08-22 20:54:34,279", + "time_finished": "2025-08-22 20:54:34,582" + }, + "ViDevLight.state (gfw.dirk.amplifier) -> Powerplug4P.amplifier (gfw.dirk.powerplug)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.dirk.amplifier) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888874.58287, + "msecs": 582.0, + "relativeCreated": 36457.679219, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.dirk.amplifier) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "asctime": "2025-08-22 20:54:34,582", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888874.6835425, + "msecs": 683.0, + "relativeCreated": 36558.351704, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:34,683", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.58304, + "msecs": 583.0, + "relativeCreated": 36457.849249, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false", + "asctime": "2025-08-22 20:54:34,583" + } + ], + "time_consumption": 0.10050249099731445 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.6839335, + "msecs": 683.0, + "relativeCreated": 36558.742622, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:34,683", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.6838286, + "msecs": 683.0, + "relativeCreated": 36558.637829, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:34,683" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.68389, + "msecs": 683.0, + "relativeCreated": 36558.699425, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:34,683" + } + ], + "time_consumption": 4.3392181396484375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.amplifier)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888874.7844634, + "msecs": 784.0, + "relativeCreated": 36659.272649, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.amplifier) to True", + "asctime": "2025-08-22 20:54:34,784", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.6840463, + "msecs": 684.0, + "relativeCreated": 36558.855451, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload true", + "asctime": "2025-08-22 20:54:34,684" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.6863525, + "msecs": 686.0, + "relativeCreated": 36561.161693, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:34,686" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.686565, + "msecs": 686.0, + "relativeCreated": 36561.374206, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:34,686" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.6872256, + "msecs": 687.0, + "relativeCreated": 36562.034926, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:34,687" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.7702718, + "msecs": 770.0, + "relativeCreated": 36645.080971, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:34,770" + } + ], + "time_consumption": 0.014191627502441406 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.7847936, + "msecs": 784.0, + "relativeCreated": 36659.60273, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:34,784", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.784698, + "msecs": 784.0, + "relativeCreated": 36659.507375, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): True ()", + "asctime": "2025-08-22 20:54:34,784" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.7847528, + "msecs": 784.0, + "relativeCreated": 36659.562145, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = True ()", + "asctime": "2025-08-22 20:54:34,784" + } + ], + "time_consumption": 4.076957702636719e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.amplifier)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888874.8854158, + "msecs": 885.0, + "relativeCreated": 36760.224853, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.amplifier) to False", + "asctime": "2025-08-22 20:54:34,885", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.7849016, + "msecs": 784.0, + "relativeCreated": 36659.710938, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false", + "asctime": "2025-08-22 20:54:34,784" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.7874384, + "msecs": 787.0, + "relativeCreated": 36662.247628, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:34,787" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.787613, + "msecs": 787.0, + "relativeCreated": 36662.422063, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:34,787" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.7882316, + "msecs": 788.0, + "relativeCreated": 36663.04092, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:34,788" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.870358, + "msecs": 870.0, + "relativeCreated": 36745.167131, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:34,870" + } + ], + "time_consumption": 0.015057802200317383 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.8857756, + "msecs": 885.0, + "relativeCreated": 36760.584892, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:34,885", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.8856199, + "msecs": 885.0, + "relativeCreated": 36760.429173, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): False ()", + "asctime": "2025-08-22 20:54:34,885" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.8857274, + "msecs": 885.0, + "relativeCreated": 36760.53664, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = False ()", + "asctime": "2025-08-22 20:54:34,885" + } + ], + "time_consumption": 4.8160552978515625e-05 + } + ], + "time_consumption": 0.3029055595397949, + "time_start": "2025-08-22 20:54:34,582", + "time_finished": "2025-08-22 20:54:34,885" + }, + "Powerplug4P.amplifier (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.amplifier)": { + "name": "__tLogger__", + "msg": "Powerplug4P.amplifier (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.amplifier)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888874.8859804, + "msecs": 885.0, + "relativeCreated": 36760.789736, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug4P.amplifier (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.amplifier)", + "asctime": "2025-08-22 20:54:34,885", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888874.9865613, + "msecs": 986.0, + "relativeCreated": 36861.370551, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:34,986", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.8861048, + "msecs": 886.0, + "relativeCreated": 36760.914165, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false", + "asctime": "2025-08-22 20:54:34,886" + } + ], + "time_consumption": 0.10045647621154785 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888874.986946, + "msecs": 986.0, + "relativeCreated": 36861.7553, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:34,986", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888874.986823, + "msecs": 986.0, + "relativeCreated": 36861.632499, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:34,986" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888874.9869041, + "msecs": 986.0, + "relativeCreated": 36861.713318, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:34,986" + } + ], + "time_consumption": 4.1961669921875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.amplifier (gfw.dirk.powerplug)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888875.0875902, + "msecs": 87.0, + "relativeCreated": 36962.39944, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.amplifier (gfw.dirk.powerplug) to True", + "asctime": "2025-08-22 20:54:35,087", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888874.987073, + "msecs": 987.0, + "relativeCreated": 36861.882365, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:34,987" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888874.9880736, + "msecs": 988.0, + "relativeCreated": 36862.882673, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:34,988" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.0326998, + "msecs": 32.0, + "relativeCreated": 36907.509092, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:35,032" + } + ], + "time_consumption": 0.05489039421081543 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.amplifier) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.0879772, + "msecs": 87.0, + "relativeCreated": 36962.786449, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.amplifier) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:35,087", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.amplifier)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.0878365, + "msecs": 87.0, + "relativeCreated": 36962.64575, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.amplifier)): True ()", + "asctime": "2025-08-22 20:54:35,087" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.amplifier)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.0879133, + "msecs": 87.0, + "relativeCreated": 36962.722442, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.amplifier)): result = True ()", + "asctime": "2025-08-22 20:54:35,087" + } + ], + "time_consumption": 6.389617919921875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.amplifier (gfw.dirk.powerplug)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888875.1886034, + "msecs": 188.0, + "relativeCreated": 37063.412653, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.amplifier (gfw.dirk.powerplug) to False", + "asctime": "2025-08-22 20:54:35,188", + "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", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.088097, + "msecs": 88.0, + "relativeCreated": 36962.906377, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:35,088" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.0892093, + "msecs": 89.0, + "relativeCreated": 36964.018706, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:35,089" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.0911565, + "msecs": 91.0, + "relativeCreated": 36965.965714, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:35,091" + } + ], + "time_consumption": 0.09744691848754883 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.amplifier) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.188969, + "msecs": 188.0, + "relativeCreated": 37063.778298, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.amplifier) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:35,188", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.amplifier)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.188868, + "msecs": 188.0, + "relativeCreated": 37063.677399, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.amplifier)): False ()", + "asctime": "2025-08-22 20:54:35,188" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.amplifier)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.1889257, + "msecs": 188.0, + "relativeCreated": 37063.734868, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.amplifier)): result = False ()", + "asctime": "2025-08-22 20:54:35,188" + } + ], + "time_consumption": 4.315376281738281e-05 + } + ], + "time_consumption": 0.30298852920532227, + "time_start": "2025-08-22 20:54:34,885", + "time_finished": "2025-08-22 20:54:35,188" + }, + "ViDevLight.state (gfw.dirk.phono) -> Powerplug4P.phono (gfw.dirk.powerplug)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.dirk.phono) -> Powerplug4P.phono (gfw.dirk.powerplug)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888875.1892116, + "msecs": 189.0, + "relativeCreated": 37064.020875, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.dirk.phono) -> Powerplug4P.phono (gfw.dirk.powerplug)", + "asctime": "2025-08-22 20:54:35,189", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888875.2899344, + "msecs": 289.0, + "relativeCreated": 37164.743503, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:35,289", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.1893911, + "msecs": 189.0, + "relativeCreated": 37064.200453, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/phono/state/set and payload false", + "asctime": "2025-08-22 20:54:35,189" + } + ], + "time_consumption": 0.10054326057434082 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.290313, + "msecs": 290.0, + "relativeCreated": 37165.122258, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:35,290", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.2902002, + "msecs": 290.0, + "relativeCreated": 37165.009593, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:35,290" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.2902694, + "msecs": 290.0, + "relativeCreated": 37165.078663, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:35,290" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.phono)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888875.3907766, + "msecs": 390.0, + "relativeCreated": 37265.585852, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.phono) to True", + "asctime": "2025-08-22 20:54:35,390", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.2904253, + "msecs": 290.0, + "relativeCreated": 37165.234505, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/phono/state/set and payload true", + "asctime": "2025-08-22 20:54:35,290" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.2931392, + "msecs": 293.0, + "relativeCreated": 37167.948546, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'true'", + "asctime": "2025-08-22 20:54:35,293" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.2933362, + "msecs": 293.0, + "relativeCreated": 37168.145284, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", + "asctime": "2025-08-22 20:54:35,293" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.2940283, + "msecs": 294.0, + "relativeCreated": 37168.837504, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", + "asctime": "2025-08-22 20:54:35,294" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.3358827, + "msecs": 335.0, + "relativeCreated": 37210.692106, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:35,335" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.336123, + "msecs": 336.0, + "relativeCreated": 37210.932089, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:35,336" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.3364673, + "msecs": 336.0, + "relativeCreated": 37211.276443, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'true'", + "asctime": "2025-08-22 20:54:35,336" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.3369894, + "msecs": 336.0, + "relativeCreated": 37211.798754, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:35,336" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.3794358, + "msecs": 379.0, + "relativeCreated": 37254.244906, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:35,379" + } + ], + "time_consumption": 0.011340856552124023 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.phono (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.3910937, + "msecs": 391.0, + "relativeCreated": 37265.902959, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.phono (gfw.dirk.powerplug) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:35,391", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.phono (gfw.dirk.powerplug)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.390997, + "msecs": 390.0, + "relativeCreated": 37265.806259, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.phono (gfw.dirk.powerplug)): True ()", + "asctime": "2025-08-22 20:54:35,390" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.phono (gfw.dirk.powerplug)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.3910563, + "msecs": 391.0, + "relativeCreated": 37265.865653, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.phono (gfw.dirk.powerplug)): result = True ()", + "asctime": "2025-08-22 20:54:35,391" + } + ], + "time_consumption": 3.743171691894531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.phono)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888875.4916341, + "msecs": 491.0, + "relativeCreated": 37366.443468, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.phono) to False", + "asctime": "2025-08-22 20:54:35,491", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.3911898, + "msecs": 391.0, + "relativeCreated": 37265.999098, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/phono/state/set and payload false", + "asctime": "2025-08-22 20:54:35,391" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.3929398, + "msecs": 392.0, + "relativeCreated": 37267.749077, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'false'", + "asctime": "2025-08-22 20:54:35,392" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.3931386, + "msecs": 393.0, + "relativeCreated": 37267.947795, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", + "asctime": "2025-08-22 20:54:35,393" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.3936324, + "msecs": 393.0, + "relativeCreated": 37268.441768, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", + "asctime": "2025-08-22 20:54:35,393" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.435846, + "msecs": 435.0, + "relativeCreated": 37310.655455, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:35,435" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.4360702, + "msecs": 436.0, + "relativeCreated": 37310.879477, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:35,436" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.4364083, + "msecs": 436.0, + "relativeCreated": 37311.217497, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'false'", + "asctime": "2025-08-22 20:54:35,436" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.4368703, + "msecs": 436.0, + "relativeCreated": 37311.679508, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:35,436" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.4797006, + "msecs": 479.0, + "relativeCreated": 37354.509594, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:35,479" + } + ], + "time_consumption": 0.011933565139770508 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.phono (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.491973, + "msecs": 491.0, + "relativeCreated": 37366.782223, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.phono (gfw.dirk.powerplug) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:35,491", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.phono (gfw.dirk.powerplug)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.4918847, + "msecs": 491.0, + "relativeCreated": 37366.694136, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.phono (gfw.dirk.powerplug)): False ()", + "asctime": "2025-08-22 20:54:35,491" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.phono (gfw.dirk.powerplug)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.4919348, + "msecs": 491.0, + "relativeCreated": 37366.744048, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.phono (gfw.dirk.powerplug)): result = False ()", + "asctime": "2025-08-22 20:54:35,491" + } + ], + "time_consumption": 3.814697265625e-05 + } + ], + "time_consumption": 0.3027613162994385, + "time_start": "2025-08-22 20:54:35,189", + "time_finished": "2025-08-22 20:54:35,491" + }, + "Powerplug4P.phono (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.phono)": { + "name": "__tLogger__", + "msg": "Powerplug4P.phono (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.phono)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888875.4921634, + "msecs": 492.0, + "relativeCreated": 37366.972617, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug4P.phono (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.phono)", + "asctime": "2025-08-22 20:54:35,492", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888875.5927196, + "msecs": 592.0, + "relativeCreated": 37467.528927, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:35,592", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.4922802, + "msecs": 492.0, + "relativeCreated": 37367.089557, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/phono/state/set and payload false", + "asctime": "2025-08-22 20:54:35,492" + } + ], + "time_consumption": 0.10043931007385254 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.5930595, + "msecs": 593.0, + "relativeCreated": 37467.868828, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:35,593", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.5929585, + "msecs": 592.0, + "relativeCreated": 37467.767787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:35,592" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.5930166, + "msecs": 593.0, + "relativeCreated": 37467.825789, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:35,593" + } + ], + "time_consumption": 4.291534423828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.phono (gfw.dirk.powerplug)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888875.693711, + "msecs": 693.0, + "relativeCreated": 37568.520427, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.phono (gfw.dirk.powerplug) to True", + "asctime": "2025-08-22 20:54:35,693", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.5932045, + "msecs": 593.0, + "relativeCreated": 37468.013658, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", + "asctime": "2025-08-22 20:54:35,593" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.5941603, + "msecs": 594.0, + "relativeCreated": 37468.969673, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", + "asctime": "2025-08-22 20:54:35,594" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.6350844, + "msecs": 635.0, + "relativeCreated": 37509.893521, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:35,635" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.6353106, + "msecs": 635.0, + "relativeCreated": 37510.119741, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:35,635" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.6356401, + "msecs": 635.0, + "relativeCreated": 37510.449244, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'true'", + "asctime": "2025-08-22 20:54:35,635" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.6361384, + "msecs": 636.0, + "relativeCreated": 37510.947771, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:35,636" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.6798644, + "msecs": 679.0, + "relativeCreated": 37554.673493, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:35,679" + } + ], + "time_consumption": 0.013846635818481445 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.phono) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.694042, + "msecs": 694.0, + "relativeCreated": 37568.850998, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.phono) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:35,694", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.phono)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.6939278, + "msecs": 693.0, + "relativeCreated": 37568.736819, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.phono)): True ()", + "asctime": "2025-08-22 20:54:35,693" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.phono)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.694003, + "msecs": 694.0, + "relativeCreated": 37568.812517, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.phono)): result = True ()", + "asctime": "2025-08-22 20:54:35,694" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.phono (gfw.dirk.powerplug)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888875.7945404, + "msecs": 794.0, + "relativeCreated": 37669.349502, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.phono (gfw.dirk.powerplug) to False", + "asctime": "2025-08-22 20:54:35,794", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.6941638, + "msecs": 694.0, + "relativeCreated": 37568.972971, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", + "asctime": "2025-08-22 20:54:35,694" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.6952558, + "msecs": 695.0, + "relativeCreated": 37570.064955, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", + "asctime": "2025-08-22 20:54:35,695" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.7370973, + "msecs": 737.0, + "relativeCreated": 37611.906503, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:35,737" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.7373128, + "msecs": 737.0, + "relativeCreated": 37612.121903, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:35,737" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.737643, + "msecs": 737.0, + "relativeCreated": 37612.452254, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'false'", + "asctime": "2025-08-22 20:54:35,737" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.7381985, + "msecs": 738.0, + "relativeCreated": 37613.007751, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:35,738" + } + ], + "time_consumption": 0.05634188652038574 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.phono) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.7948675, + "msecs": 794.0, + "relativeCreated": 37669.67676, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.phono) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:35,794", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.phono)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.7947652, + "msecs": 794.0, + "relativeCreated": 37669.574511, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.phono)): False ()", + "asctime": "2025-08-22 20:54:35,794" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.phono)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.794829, + "msecs": 794.0, + "relativeCreated": 37669.638102, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.phono)): result = False ()", + "asctime": "2025-08-22 20:54:35,794" + } + ], + "time_consumption": 3.8623809814453125e-05 + } + ], + "time_consumption": 0.3027040958404541, + "time_start": "2025-08-22 20:54:35,492", + "time_finished": "2025-08-22 20:54:35,794" + }, + "ViDevLight.state (gfw.dirk.cd_player) -> Powerplug4P.cd-player (gfw.dirk.powerplug)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.dirk.cd_player) -> Powerplug4P.cd-player (gfw.dirk.powerplug)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888875.7950518, + "msecs": 795.0, + "relativeCreated": 37669.860975, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.dirk.cd_player) -> Powerplug4P.cd-player (gfw.dirk.powerplug)", + "asctime": "2025-08-22 20:54:35,795", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888875.8957584, + "msecs": 895.0, + "relativeCreated": 37770.567657, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:35,895", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.7951927, + "msecs": 795.0, + "relativeCreated": 37670.002042, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false", + "asctime": "2025-08-22 20:54:35,795" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.7963781, + "msecs": 796.0, + "relativeCreated": 37671.187316, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:35,796" + } + ], + "time_consumption": 0.0993802547454834 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.896133, + "msecs": 896.0, + "relativeCreated": 37770.942151, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:35,896", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.896, + "msecs": 896.0, + "relativeCreated": 37770.809286, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:35,896" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.896085, + "msecs": 896.0, + "relativeCreated": 37770.894184, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:35,896" + } + ], + "time_consumption": 4.792213439941406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.cd_player)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888875.9965637, + "msecs": 996.0, + "relativeCreated": 37871.373016, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.cd_player) to True", + "asctime": "2025-08-22 20:54:35,996", + "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", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.8962512, + "msecs": 896.0, + "relativeCreated": 37771.060354, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload true", + "asctime": "2025-08-22 20:54:35,896" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.8988605, + "msecs": 898.0, + "relativeCreated": 37773.669802, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'true'", + "asctime": "2025-08-22 20:54:35,898" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.8990703, + "msecs": 899.0, + "relativeCreated": 37773.879428, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", + "asctime": "2025-08-22 20:54:35,899" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.8997846, + "msecs": 899.0, + "relativeCreated": 37774.593603, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", + "asctime": "2025-08-22 20:54:35,899" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.9416914, + "msecs": 941.0, + "relativeCreated": 37816.50067, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:35,941" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.9418976, + "msecs": 941.0, + "relativeCreated": 37816.706835, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:35,941" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.9422398, + "msecs": 942.0, + "relativeCreated": 37817.0489, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", + "asctime": "2025-08-22 20:54:35,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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.9428577, + "msecs": 942.0, + "relativeCreated": 37817.666931, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:35,942" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888875.9855106, + "msecs": 985.0, + "relativeCreated": 37860.320007, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:35,985" + } + ], + "time_consumption": 0.011053085327148438 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.cd-player (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888875.9968467, + "msecs": 996.0, + "relativeCreated": 37871.655728, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.cd-player (gfw.dirk.powerplug) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:35,996", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.cd-player (gfw.dirk.powerplug)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888875.99676, + "msecs": 996.0, + "relativeCreated": 37871.569086, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.cd-player (gfw.dirk.powerplug)): True ()", + "asctime": "2025-08-22 20:54:35,996" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.cd-player (gfw.dirk.powerplug)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888875.996807, + "msecs": 996.0, + "relativeCreated": 37871.616322, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.cd-player (gfw.dirk.powerplug)): result = True ()", + "asctime": "2025-08-22 20:54:35,996" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.cd_player)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888876.0972655, + "msecs": 97.0, + "relativeCreated": 37972.07476, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.cd_player) to False", + "asctime": "2025-08-22 20:54:36,097", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888875.9969509, + "msecs": 996.0, + "relativeCreated": 37871.760145, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false", + "asctime": "2025-08-22 20:54:35,996" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.033331, + "msecs": 33.0, + "relativeCreated": 37908.140106, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'false'", + "asctime": "2025-08-22 20:54:36,033" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.0335963, + "msecs": 33.0, + "relativeCreated": 37908.405341, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", + "asctime": "2025-08-22 20:54:36,033" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.0343714, + "msecs": 34.0, + "relativeCreated": 37909.180472, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", + "asctime": "2025-08-22 20:54:36,034" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.0756304, + "msecs": 75.0, + "relativeCreated": 37950.439494, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:36,075" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.0758739, + "msecs": 75.0, + "relativeCreated": 37950.683044, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:36,075" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.0762174, + "msecs": 76.0, + "relativeCreated": 37951.026612, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,076" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.0769925, + "msecs": 76.0, + "relativeCreated": 37951.801765, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:36,076" + } + ], + "time_consumption": 0.02027297019958496 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.cd-player (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.0975783, + "msecs": 97.0, + "relativeCreated": 37972.387421, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.cd-player (gfw.dirk.powerplug) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:36,097", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.cd-player (gfw.dirk.powerplug)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.0974882, + "msecs": 97.0, + "relativeCreated": 37972.297335, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.cd-player (gfw.dirk.powerplug)): False ()", + "asctime": "2025-08-22 20:54:36,097" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.cd-player (gfw.dirk.powerplug)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.097541, + "msecs": 97.0, + "relativeCreated": 37972.350239, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.cd-player (gfw.dirk.powerplug)): result = False ()", + "asctime": "2025-08-22 20:54:36,097" + } + ], + "time_consumption": 3.719329833984375e-05 + } + ], + "time_consumption": 0.30252647399902344, + "time_start": "2025-08-22 20:54:35,795", + "time_finished": "2025-08-22 20:54:36,097" + }, + "Powerplug4P.cd-player (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.cd_player)": { + "name": "__tLogger__", + "msg": "Powerplug4P.cd-player (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.cd_player)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888876.0977948, + "msecs": 97.0, + "relativeCreated": 37972.604155, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug4P.cd-player (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.cd_player)", + "asctime": "2025-08-22 20:54:36,097", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888876.1985004, + "msecs": 198.0, + "relativeCreated": 38073.309487, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:36,198", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.0979564, + "msecs": 97.0, + "relativeCreated": 37972.765467, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false", + "asctime": "2025-08-22 20:54:36,097" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.0990694, + "msecs": 99.0, + "relativeCreated": 37973.878749, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,099" + } + ], + "time_consumption": 0.09943103790283203 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.19888, + "msecs": 198.0, + "relativeCreated": 38073.68936, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:36,198", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.198763, + "msecs": 198.0, + "relativeCreated": 38073.572271, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:36,198" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.1988182, + "msecs": 198.0, + "relativeCreated": 38073.627461, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:36,198" + } + ], + "time_consumption": 6.175041198730469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.cd-player (gfw.dirk.powerplug)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888876.2995017, + "msecs": 299.0, + "relativeCreated": 38174.310686, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.cd-player (gfw.dirk.powerplug) to True", + "asctime": "2025-08-22 20:54:36,299", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.1990144, + "msecs": 199.0, + "relativeCreated": 38073.823553, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", + "asctime": "2025-08-22 20:54:36,199" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.2001522, + "msecs": 200.0, + "relativeCreated": 38074.961376, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", + "asctime": "2025-08-22 20:54:36,200" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.2016273, + "msecs": 201.0, + "relativeCreated": 38076.436317, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:36,201" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.2018626, + "msecs": 201.0, + "relativeCreated": 38076.671801, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:36,201" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.2022872, + "msecs": 202.0, + "relativeCreated": 38077.096296, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", + "asctime": "2025-08-22 20:54:36,202" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.202739, + "msecs": 202.0, + "relativeCreated": 38077.548192, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:36,202" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.2854874, + "msecs": 285.0, + "relativeCreated": 38160.29666, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:36,285" + } + ], + "time_consumption": 0.014014244079589844 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.cd_player) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.2998662, + "msecs": 299.0, + "relativeCreated": 38174.675418, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.cd_player) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:36,299", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.cd_player)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.2997715, + "msecs": 299.0, + "relativeCreated": 38174.580919, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.cd_player)): True ()", + "asctime": "2025-08-22 20:54:36,299" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.cd_player)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.2998273, + "msecs": 299.0, + "relativeCreated": 38174.636739, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.cd_player)): result = True ()", + "asctime": "2025-08-22 20:54:36,299" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.cd-player (gfw.dirk.powerplug)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888876.4004803, + "msecs": 400.0, + "relativeCreated": 38275.289481, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.cd-player (gfw.dirk.powerplug) to False", + "asctime": "2025-08-22 20:54:36,400", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.2999914, + "msecs": 299.0, + "relativeCreated": 38174.800654, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", + "asctime": "2025-08-22 20:54:36,299" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.3009517, + "msecs": 300.0, + "relativeCreated": 38175.761083, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", + "asctime": "2025-08-22 20:54:36,300" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.3420968, + "msecs": 342.0, + "relativeCreated": 38216.906229, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:36,342" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.342298, + "msecs": 342.0, + "relativeCreated": 38217.107369, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:36,342" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.342626, + "msecs": 342.0, + "relativeCreated": 38217.435286, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,342" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.3432176, + "msecs": 343.0, + "relativeCreated": 38218.027026, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:36,343" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.3854835, + "msecs": 385.0, + "relativeCreated": 38260.292877, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,385" + } + ], + "time_consumption": 0.014996767044067383 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.cd_player) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.4008453, + "msecs": 400.0, + "relativeCreated": 38275.654482, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.cd_player) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:36,400", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.cd_player)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.4007318, + "msecs": 400.0, + "relativeCreated": 38275.541016, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.cd_player)): False ()", + "asctime": "2025-08-22 20:54:36,400" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.cd_player)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.4008064, + "msecs": 400.0, + "relativeCreated": 38275.615591, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.cd_player)): result = False ()", + "asctime": "2025-08-22 20:54:36,400" + } + ], + "time_consumption": 3.886222839355469e-05 + } + ], + "time_consumption": 0.30305051803588867, + "time_start": "2025-08-22 20:54:36,097", + "time_finished": "2025-08-22 20:54:36,400" + }, + "ViDevLight.state (gfw.dirk.bt) -> Powerplug4P.bluetooth (gfw.dirk.powerplug)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.dirk.bt) -> Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888876.4010417, + "msecs": 401.0, + "relativeCreated": 38275.850802, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.dirk.bt) -> Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "asctime": "2025-08-22 20:54:36,401", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888876.5017364, + "msecs": 501.0, + "relativeCreated": 38376.545797, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:36,501", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.401178, + "msecs": 401.0, + "relativeCreated": 38275.986976, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/bt/state/set and payload false", + "asctime": "2025-08-22 20:54:36,401" + } + ], + "time_consumption": 0.10055851936340332 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.5020792, + "msecs": 502.0, + "relativeCreated": 38376.888521, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:36,502", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.5019774, + "msecs": 501.0, + "relativeCreated": 38376.78655, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:36,501" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.5020354, + "msecs": 502.0, + "relativeCreated": 38376.844782, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:36,502" + } + ], + "time_consumption": 4.38690185546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.bt)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888876.602648, + "msecs": 602.0, + "relativeCreated": 38477.457407, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.bt) to True", + "asctime": "2025-08-22 20:54:36,602", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.5021927, + "msecs": 502.0, + "relativeCreated": 38377.001954, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/bt/state/set and payload true", + "asctime": "2025-08-22 20:54:36,502" + }, + { + "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'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.5048766, + "msecs": 504.0, + "relativeCreated": 38379.685837, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'true'", + "asctime": "2025-08-22 20:54:36,504" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.5050755, + "msecs": 505.0, + "relativeCreated": 38379.884776, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", + "asctime": "2025-08-22 20:54:36,505" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.5058324, + "msecs": 505.0, + "relativeCreated": 38380.641556, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", + "asctime": "2025-08-22 20:54:36,505" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.5467615, + "msecs": 546.0, + "relativeCreated": 38421.570792, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:36,546" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.5469646, + "msecs": 546.0, + "relativeCreated": 38421.773949, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:36,546" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.5473077, + "msecs": 547.0, + "relativeCreated": 38422.116915, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'true'", + "asctime": "2025-08-22 20:54:36,547" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.5477571, + "msecs": 547.0, + "relativeCreated": 38422.566332, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:36,547" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.5903554, + "msecs": 590.0, + "relativeCreated": 38465.164645, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:36,590" + } + ], + "time_consumption": 0.012292623519897461 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.6029913, + "msecs": 602.0, + "relativeCreated": 38477.800587, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:36,602", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.602885, + "msecs": 602.0, + "relativeCreated": 38477.694468, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)): True ()", + "asctime": "2025-08-22 20:54:36,602" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.6029525, + "msecs": 602.0, + "relativeCreated": 38477.761758, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)): result = True ()", + "asctime": "2025-08-22 20:54:36,602" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.dirk.bt)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888876.7035635, + "msecs": 703.0, + "relativeCreated": 38578.37285, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.dirk.bt) to False", + "asctime": "2025-08-22 20:54:36,703", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.6030917, + "msecs": 603.0, + "relativeCreated": 38477.900949, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/bt/state/set and payload false", + "asctime": "2025-08-22 20:54:36,603" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.6049745, + "msecs": 604.0, + "relativeCreated": 38479.783812, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'false'", + "asctime": "2025-08-22 20:54:36,604" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.6051545, + "msecs": 605.0, + "relativeCreated": 38479.963761, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", + "asctime": "2025-08-22 20:54:36,605" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.6056306, + "msecs": 605.0, + "relativeCreated": 38480.44007, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", + "asctime": "2025-08-22 20:54:36,605" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.648766, + "msecs": 648.0, + "relativeCreated": 38523.575302, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:36,648" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.64898, + "msecs": 648.0, + "relativeCreated": 38523.78924, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:36,648" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.649309, + "msecs": 649.0, + "relativeCreated": 38524.118119, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,649" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.6497169, + "msecs": 649.0, + "relativeCreated": 38524.525877, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:36,649" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.692645, + "msecs": 692.0, + "relativeCreated": 38567.454391, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,692" + } + ], + "time_consumption": 0.010918378829956055 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.7039092, + "msecs": 703.0, + "relativeCreated": 38578.718373, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:36,703", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.703814, + "msecs": 703.0, + "relativeCreated": 38578.623455, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)): False ()", + "asctime": "2025-08-22 20:54:36,703" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.7038684, + "msecs": 703.0, + "relativeCreated": 38578.677632, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.bluetooth (gfw.dirk.powerplug)): result = False ()", + "asctime": "2025-08-22 20:54:36,703" + } + ], + "time_consumption": 4.076957702636719e-05 + } + ], + "time_consumption": 0.30286741256713867, + "time_start": "2025-08-22 20:54:36,401", + "time_finished": "2025-08-22 20:54:36,703" + }, + "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.bt)": { + "name": "__tLogger__", + "msg": "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.bt)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888876.7040985, + "msecs": 704.0, + "relativeCreated": 38578.907736, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.bt)", + "asctime": "2025-08-22 20:54:36,704", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888876.804574, + "msecs": 804.0, + "relativeCreated": 38679.383159, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:36,804", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.7042508, + "msecs": 704.0, + "relativeCreated": 38579.060006, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/bt/state/set and payload false", + "asctime": "2025-08-22 20:54:36,704" + } + ], + "time_consumption": 0.10032320022583008 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.8049483, + "msecs": 804.0, + "relativeCreated": 38679.757526, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:36,804", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.804823, + "msecs": 804.0, + "relativeCreated": 38679.63224, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:36,804" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.804905, + "msecs": 804.0, + "relativeCreated": 38679.714068, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:36,804" + } + ], + "time_consumption": 4.3392181396484375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888876.90558, + "msecs": 905.0, + "relativeCreated": 38780.389288, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.bluetooth (gfw.dirk.powerplug) to True", + "asctime": "2025-08-22 20:54:36,905", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.8050892, + "msecs": 805.0, + "relativeCreated": 38679.898439, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", + "asctime": "2025-08-22 20:54:36,805" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.8061748, + "msecs": 806.0, + "relativeCreated": 38680.983958, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", + "asctime": "2025-08-22 20:54:36,806" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.8473694, + "msecs": 847.0, + "relativeCreated": 38722.178676, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:36,847" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.8475847, + "msecs": 847.0, + "relativeCreated": 38722.393976, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:36,847" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.847976, + "msecs": 847.0, + "relativeCreated": 38722.785282, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'true'", + "asctime": "2025-08-22 20:54:36,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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.8488033, + "msecs": 848.0, + "relativeCreated": 38723.612519, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:36,848" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.8904035, + "msecs": 890.0, + "relativeCreated": 38765.212761, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:36,890" + } + ], + "time_consumption": 0.015176534652709961 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.bt) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888876.905949, + "msecs": 905.0, + "relativeCreated": 38780.758422, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.bt) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:36,905", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.bt)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888876.9058344, + "msecs": 905.0, + "relativeCreated": 38780.643669, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.bt)): True ()", + "asctime": "2025-08-22 20:54:36,905" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.bt)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888876.9058886, + "msecs": 905.0, + "relativeCreated": 38780.697728, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.bt)): result = True ()", + "asctime": "2025-08-22 20:54:36,905" + } + ], + "time_consumption": 6.0558319091796875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888877.006453, + "msecs": 6.0, + "relativeCreated": 38881.262291, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.bluetooth (gfw.dirk.powerplug) to False", + "asctime": "2025-08-22 20:54:37,006", + "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", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.9060743, + "msecs": 906.0, + "relativeCreated": 38780.883689, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", + "asctime": "2025-08-22 20:54:36,906" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.9071393, + "msecs": 907.0, + "relativeCreated": 38781.948533, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", + "asctime": "2025-08-22 20:54:36,907" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.9491816, + "msecs": 949.0, + "relativeCreated": 38823.990718, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:36,949" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888876.949399, + "msecs": 949.0, + "relativeCreated": 38824.208302, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:36,949" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.949764, + "msecs": 949.0, + "relativeCreated": 38824.573282, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,949" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.9505808, + "msecs": 950.0, + "relativeCreated": 38825.389989, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:36,950" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888876.9934938, + "msecs": 993.0, + "relativeCreated": 38868.303061, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:36,993" + } + ], + "time_consumption": 0.01295924186706543 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.dirk.bt) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.0067647, + "msecs": 6.0, + "relativeCreated": 38881.573694, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.dirk.bt) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:37,006", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.bt)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.0066772, + "msecs": 6.0, + "relativeCreated": 38881.486387, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.dirk.bt)): False ()", + "asctime": "2025-08-22 20:54:37,006" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.dirk.bt)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.0067277, + "msecs": 6.0, + "relativeCreated": 38881.536989, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.dirk.bt)): result = False ()", + "asctime": "2025-08-22 20:54:37,006" + } + ], + "time_consumption": 3.695487976074219e-05 + } + ], + "time_consumption": 0.30266618728637695, + "time_start": "2025-08-22 20:54:36,704", + "time_finished": "2025-08-22 20:54:37,006" + }, + "Powerplug4P.phono (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)": { + "name": "__tLogger__", + "msg": "Powerplug4P.phono (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888877.0069406, + "msecs": 6.0, + "relativeCreated": 38881.749803, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug4P.phono (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "asctime": "2025-08-22 20:54:37,006", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888877.1073098, + "msecs": 107.0, + "relativeCreated": 38982.118974, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:37,107", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.1077168, + "msecs": 107.0, + "relativeCreated": 38982.526193, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:37,107", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.1075697, + "msecs": 107.0, + "relativeCreated": 38982.378897, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:37,107" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.1076345, + "msecs": 107.0, + "relativeCreated": 38982.443791, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:37,107" + } + ], + "time_consumption": 8.225440979003906e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.phono (gfw.dirk.powerplug)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888877.2082207, + "msecs": 208.0, + "relativeCreated": 39083.029999, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.phono (gfw.dirk.powerplug) to True", + "asctime": "2025-08-22 20:54:37,208", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.1078598, + "msecs": 107.0, + "relativeCreated": 38982.669232, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", + "asctime": "2025-08-22 20:54:37,107" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.1090047, + "msecs": 109.0, + "relativeCreated": 38983.814092, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", + "asctime": "2025-08-22 20:54:37,109" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.1105905, + "msecs": 110.0, + "relativeCreated": 38985.399757, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:37,110" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.110801, + "msecs": 110.0, + "relativeCreated": 38985.610244, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:37,110" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.1111462, + "msecs": 111.0, + "relativeCreated": 38985.955376, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'true'", + "asctime": "2025-08-22 20:54:37,111" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.1117072, + "msecs": 111.0, + "relativeCreated": 38986.516263, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:37,111" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.1944807, + "msecs": 194.0, + "relativeCreated": 39069.289937, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:37,194" + } + ], + "time_consumption": 0.013740062713623047 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.2085168, + "msecs": 208.0, + "relativeCreated": 39083.326097, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:37,208", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.2084296, + "msecs": 208.0, + "relativeCreated": 39083.238891, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): True ()", + "asctime": "2025-08-22 20:54:37,208" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.208478, + "msecs": 208.0, + "relativeCreated": 39083.287248, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = True ()", + "asctime": "2025-08-22 20:54:37,208" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.phono (gfw.dirk.powerplug)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888877.3091245, + "msecs": 309.0, + "relativeCreated": 39183.93351, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.phono (gfw.dirk.powerplug) to False", + "asctime": "2025-08-22 20:54:37,309", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.208636, + "msecs": 208.0, + "relativeCreated": 39083.445341, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", + "asctime": "2025-08-22 20:54:37,208" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.2097356, + "msecs": 209.0, + "relativeCreated": 39084.544986, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", + "asctime": "2025-08-22 20:54:37,209" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.2502723, + "msecs": 250.0, + "relativeCreated": 39125.081471, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:37,250" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.2504897, + "msecs": 250.0, + "relativeCreated": 39125.298834, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:37,250" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.phono.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/phono/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.2508698, + "msecs": 250.0, + "relativeCreated": 39125.678883, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/phono/state and payload b'false'", + "asctime": "2025-08-22 20:54:37,250" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.2515717, + "msecs": 251.0, + "relativeCreated": 39126.380899, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:37,251" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.2944052, + "msecs": 294.0, + "relativeCreated": 39169.214443, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:37,294" + } + ], + "time_consumption": 0.014719247817993164 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.309449, + "msecs": 309.0, + "relativeCreated": 39184.258223, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:37,309", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.3093338, + "msecs": 309.0, + "relativeCreated": 39184.143095, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): False ()", + "asctime": "2025-08-22 20:54:37,309" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.3094103, + "msecs": 309.0, + "relativeCreated": 39184.21942, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = False ()", + "asctime": "2025-08-22 20:54:37,309" + } + ], + "time_consumption": 3.8623809814453125e-05 + } + ], + "time_consumption": 0.3025083541870117, + "time_start": "2025-08-22 20:54:37,006", + "time_finished": "2025-08-22 20:54:37,309" + }, + "Powerplug4P.cd-player (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)": { + "name": "__tLogger__", + "msg": "Powerplug4P.cd-player (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888877.309634, + "msecs": 309.0, + "relativeCreated": 39184.443213, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug4P.cd-player (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "asctime": "2025-08-22 20:54:37,309", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888877.4099865, + "msecs": 409.0, + "relativeCreated": 39284.795678, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:37,409", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.41035, + "msecs": 410.0, + "relativeCreated": 39285.159278, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:37,410", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.4102192, + "msecs": 410.0, + "relativeCreated": 39285.028528, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:37,410" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.410298, + "msecs": 410.0, + "relativeCreated": 39285.107334, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:37,410" + } + ], + "time_consumption": 5.1975250244140625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.cd-player (gfw.dirk.powerplug)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888877.510898, + "msecs": 510.0, + "relativeCreated": 39385.707312, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.cd-player (gfw.dirk.powerplug) to True", + "asctime": "2025-08-22 20:54:37,510", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.410489, + "msecs": 410.0, + "relativeCreated": 39285.298314, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", + "asctime": "2025-08-22 20:54:37,410" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.4117177, + "msecs": 411.0, + "relativeCreated": 39286.526938, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", + "asctime": "2025-08-22 20:54:37,411" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.4134786, + "msecs": 413.0, + "relativeCreated": 39288.287957, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:37,413" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.4136815, + "msecs": 413.0, + "relativeCreated": 39288.490711, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:37,413" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.414728, + "msecs": 414.0, + "relativeCreated": 39289.537048, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", + "asctime": "2025-08-22 20:54:37,414" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.4152703, + "msecs": 415.0, + "relativeCreated": 39290.079571, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:37,415" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.4977677, + "msecs": 497.0, + "relativeCreated": 39372.577011, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:37,497" + } + ], + "time_consumption": 0.013130426406860352 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.511229, + "msecs": 511.0, + "relativeCreated": 39386.038131, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:37,511", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.5111127, + "msecs": 511.0, + "relativeCreated": 39385.921971, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): True ()", + "asctime": "2025-08-22 20:54:37,511" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.5111887, + "msecs": 511.0, + "relativeCreated": 39385.998085, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = True ()", + "asctime": "2025-08-22 20:54:37,511" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.cd-player (gfw.dirk.powerplug)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888877.6116946, + "msecs": 611.0, + "relativeCreated": 39486.50374, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.cd-player (gfw.dirk.powerplug) to False", + "asctime": "2025-08-22 20:54:37,611", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.5113509, + "msecs": 511.0, + "relativeCreated": 39386.15991, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", + "asctime": "2025-08-22 20:54:37,511" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.5124142, + "msecs": 512.0, + "relativeCreated": 39387.223363, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", + "asctime": "2025-08-22 20:54:37,512" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.5530171, + "msecs": 553.0, + "relativeCreated": 39427.826363, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:37,553" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.5532196, + "msecs": 553.0, + "relativeCreated": 39428.028884, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:37,553" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.5535474, + "msecs": 553.0, + "relativeCreated": 39428.356607, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", + "asctime": "2025-08-22 20:54:37,553" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.5540829, + "msecs": 554.0, + "relativeCreated": 39428.892164, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:37,554" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.5973732, + "msecs": 597.0, + "relativeCreated": 39472.182395, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:37,597" + } + ], + "time_consumption": 0.014321327209472656 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.6119545, + "msecs": 611.0, + "relativeCreated": 39486.763663, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:37,611", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.6118746, + "msecs": 611.0, + "relativeCreated": 39486.683918, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): False ()", + "asctime": "2025-08-22 20:54:37,611" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.6119194, + "msecs": 611.0, + "relativeCreated": 39486.72872, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = False ()", + "asctime": "2025-08-22 20:54:37,611" + } + ], + "time_consumption": 3.504753112792969e-05 + } + ], + "time_consumption": 0.3023204803466797, + "time_start": "2025-08-22 20:54:37,309", + "time_finished": "2025-08-22 20:54:37,611" + }, + "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)": { + "name": "__tLogger__", + "msg": "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888877.612118, + "msecs": 612.0, + "relativeCreated": 39486.927209, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "asctime": "2025-08-22 20:54:37,612", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888877.712495, + "msecs": 712.0, + "relativeCreated": 39587.304328, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:37,712", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.7128425, + "msecs": 712.0, + "relativeCreated": 39587.651619, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:37,712", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.7127483, + "msecs": 712.0, + "relativeCreated": 39587.557524, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:37,712" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.7128031, + "msecs": 712.0, + "relativeCreated": 39587.612357, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:37,712" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888877.8133774, + "msecs": 813.0, + "relativeCreated": 39688.186531, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.bluetooth (gfw.dirk.powerplug) to True", + "asctime": "2025-08-22 20:54:37,813", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.7129908, + "msecs": 712.0, + "relativeCreated": 39587.800028, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", + "asctime": "2025-08-22 20:54:37,712" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.714225, + "msecs": 714.0, + "relativeCreated": 39589.034389, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", + "asctime": "2025-08-22 20:54:37,714" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.7161305, + "msecs": 716.0, + "relativeCreated": 39590.939921, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2025-08-22 20:54:37,716" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.7163057, + "msecs": 716.0, + "relativeCreated": 39591.114803, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2025-08-22 20:54:37,716" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.71665, + "msecs": 716.0, + "relativeCreated": 39591.459176, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'true'", + "asctime": "2025-08-22 20:54:37,716" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.7173347, + "msecs": 717.0, + "relativeCreated": 39592.143972, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2025-08-22 20:54:37,717" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.8004506, + "msecs": 800.0, + "relativeCreated": 39675.259706, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2025-08-22 20:54:37,800" + } + ], + "time_consumption": 0.012926816940307617 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.813684, + "msecs": 813.0, + "relativeCreated": 39688.493112, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:37,813", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.8135812, + "msecs": 813.0, + "relativeCreated": 39688.390484, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): True ()", + "asctime": "2025-08-22 20:54:37,813" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.813631, + "msecs": 813.0, + "relativeCreated": 39688.440283, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = True ()", + "asctime": "2025-08-22 20:54:37,813" + } + ], + "time_consumption": 5.2928924560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888877.9142442, + "msecs": 914.0, + "relativeCreated": 39789.053278, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Powerplug4P.bluetooth (gfw.dirk.powerplug) to False", + "asctime": "2025-08-22 20:54:37,914", + "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", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.8138244, + "msecs": 813.0, + "relativeCreated": 39688.633745, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", + "asctime": "2025-08-22 20:54:37,813" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.814777, + "msecs": 814.0, + "relativeCreated": 39689.585976, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", + "asctime": "2025-08-22 20:54:37,814" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.8560956, + "msecs": 856.0, + "relativeCreated": 39730.904636, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2025-08-22 20:54:37,856" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.8563, + "msecs": 856.0, + "relativeCreated": 39731.109193, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2025-08-22 20:54:37,856" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.bt.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/bt/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.856625, + "msecs": 856.0, + "relativeCreated": 39731.434468, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/bt/state and payload b'false'", + "asctime": "2025-08-22 20:54:37,856" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.8571382, + "msecs": 857.0, + "relativeCreated": 39731.947482, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2025-08-22 20:54:37,857" + } + ], + "time_consumption": 0.05710601806640625 + }, + { + "name": "__tLogger__", + "msg": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888877.9145224, + "msecs": 914.0, + "relativeCreated": 39789.331527, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Powerplug4P.amplifier (gfw.dirk.powerplug) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:37,914", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888877.9144342, + "msecs": 914.0, + "relativeCreated": 39789.243436, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): False ()", + "asctime": "2025-08-22 20:54:37,914" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Powerplug4P.amplifier (gfw.dirk.powerplug)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888877.9144857, + "msecs": 914.0, + "relativeCreated": 39789.294959, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Powerplug4P.amplifier (gfw.dirk.powerplug)): result = False ()", + "asctime": "2025-08-22 20:54:37,914" + } + ], + "time_consumption": 3.6716461181640625e-05 + } + ], + "time_consumption": 0.30240440368652344, + "time_start": "2025-08-22 20:54:37,612", + "time_finished": "2025-08-22 20:54:37,914" + }, + "ViDevLight.brightness (gfw.dirk.main_light) -> Light.brightness (gfw.dirk.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (gfw.dirk.main_light) -> Light.brightness (gfw.dirk.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888877.914717, + "msecs": 914.0, + "relativeCreated": 39789.526088, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (gfw.dirk.main_light) -> Light.brightness (gfw.dirk.main_light)", + "asctime": "2025-08-22 20:54:37,914", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888878.0154326, + "msecs": 15.0, + "relativeCreated": 39890.241829, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:38,015", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.9148183, + "msecs": 914.0, + "relativeCreated": 39789.627575, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:37,914" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888877.9150808, + "msecs": 915.0, + "relativeCreated": 39789.889978, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:37,915" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.9158883, + "msecs": 915.0, + "relativeCreated": 39790.697555, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:37,915" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.9161978, + "msecs": 916.0, + "relativeCreated": 39791.00717, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2025-08-22 20:54:37,916" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.9580903, + "msecs": 958.0, + "relativeCreated": 39832.899402, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:37,958" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888877.9584465, + "msecs": 958.0, + "relativeCreated": 39833.255871, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:37,958" + } + ], + "time_consumption": 0.056986093521118164 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888878.1163194, + "msecs": 116.0, + "relativeCreated": 39991.128714, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:38,116", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.015759, + "msecs": 15.0, + "relativeCreated": 39890.568445, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:38,015" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.0160642, + "msecs": 16.0, + "relativeCreated": 39890.873419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,016" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.018528, + "msecs": 18.0, + "relativeCreated": 39893.337266, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:38,018" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.018899, + "msecs": 18.0, + "relativeCreated": 39893.708227, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,018" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.060609, + "msecs": 60.0, + "relativeCreated": 39935.418252, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:38,060" + } + ], + "time_consumption": 0.0557103157043457 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.1166372, + "msecs": 116.0, + "relativeCreated": 39991.446337, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:38,116", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.1165442, + "msecs": 116.0, + "relativeCreated": 39991.353463, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:38,116" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.1165974, + "msecs": 116.0, + "relativeCreated": 39991.406818, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:38,116" + } + ], + "time_consumption": 3.981590270996094e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888878.2172863, + "msecs": 217.0, + "relativeCreated": 40092.095562, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.main_light) to 0", + "asctime": "2025-08-22 20:54:38,217", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.116759, + "msecs": 116.0, + "relativeCreated": 39991.568308, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:38,116" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.1191833, + "msecs": 119.0, + "relativeCreated": 39993.992505, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:38,119" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.1193907, + "msecs": 119.0, + "relativeCreated": 39994.199923, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,119" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.1200953, + "msecs": 120.0, + "relativeCreated": 39994.904497, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,120" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.1612751, + "msecs": 161.0, + "relativeCreated": 40036.084275, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:38,161" + } + ], + "time_consumption": 0.056011199951171875 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.2175937, + "msecs": 217.0, + "relativeCreated": 40092.402949, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:38,217", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.2175002, + "msecs": 217.0, + "relativeCreated": 40092.309305, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:38,217" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.2175546, + "msecs": 217.0, + "relativeCreated": 40092.363928, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:38,217" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888878.3181207, + "msecs": 318.0, + "relativeCreated": 40192.929932, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.main_light) to 20", + "asctime": "2025-08-22 20:54:38,318", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.217752, + "msecs": 217.0, + "relativeCreated": 40092.561399, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:38,217" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.2200024, + "msecs": 220.0, + "relativeCreated": 40094.811614, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:38,220" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.2202282, + "msecs": 220.0, + "relativeCreated": 40095.037257, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,220" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.2208369, + "msecs": 220.0, + "relativeCreated": 40095.646128, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,220" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.2631035, + "msecs": 263.0, + "relativeCreated": 40137.912848, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:38,263" + } + ], + "time_consumption": 0.05501723289489746 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.3184285, + "msecs": 318.0, + "relativeCreated": 40193.237533, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:38,318", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.318337, + "msecs": 318.0, + "relativeCreated": 40193.146369, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:38,318" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.3183901, + "msecs": 318.0, + "relativeCreated": 40193.199246, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:38,318" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888878.4189177, + "msecs": 418.0, + "relativeCreated": 40293.726964, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.main_light) to 40", + "asctime": "2025-08-22 20:54:38,418", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.318533, + "msecs": 318.0, + "relativeCreated": 40193.342165, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:38,318" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.320721, + "msecs": 320.0, + "relativeCreated": 40195.530205, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:38,320" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.3209286, + "msecs": 320.0, + "relativeCreated": 40195.73772, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,320" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.3215158, + "msecs": 321.0, + "relativeCreated": 40196.325039, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,321" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.3627517, + "msecs": 362.0, + "relativeCreated": 40237.561023, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:38,362" + } + ], + "time_consumption": 0.05616593360900879 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.4192479, + "msecs": 419.0, + "relativeCreated": 40294.057203, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:38,419", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.4191298, + "msecs": 419.0, + "relativeCreated": 40293.939144, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:38,419" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.419207, + "msecs": 419.0, + "relativeCreated": 40294.016327, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:38,419" + } + ], + "time_consumption": 4.076957702636719e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888878.5198371, + "msecs": 519.0, + "relativeCreated": 40394.646342, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.main_light) to 60", + "asctime": "2025-08-22 20:54:38,519", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.4193547, + "msecs": 419.0, + "relativeCreated": 40294.163806, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:38,419" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.4216833, + "msecs": 421.0, + "relativeCreated": 40296.492327, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:38,421" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.421908, + "msecs": 421.0, + "relativeCreated": 40296.717101, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,421" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.4227118, + "msecs": 422.0, + "relativeCreated": 40297.520933, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,422" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.463461, + "msecs": 463.0, + "relativeCreated": 40338.270032, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:38,463" + } + ], + "time_consumption": 0.05637621879577637 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.5201266, + "msecs": 520.0, + "relativeCreated": 40394.935816, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:38,520", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.5200446, + "msecs": 520.0, + "relativeCreated": 40394.853757, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:38,520" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.520091, + "msecs": 520.0, + "relativeCreated": 40394.90035, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:38,520" + } + ], + "time_consumption": 3.552436828613281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888878.6205885, + "msecs": 620.0, + "relativeCreated": 40495.397821, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.main_light) to 80", + "asctime": "2025-08-22 20:54:38,620", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.5202506, + "msecs": 520.0, + "relativeCreated": 40395.059885, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:38,520" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.52253, + "msecs": 522.0, + "relativeCreated": 40397.339385, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:38,522" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.5227551, + "msecs": 522.0, + "relativeCreated": 40397.5642, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,522" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.5234795, + "msecs": 523.0, + "relativeCreated": 40398.288708, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,523" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.5657957, + "msecs": 565.0, + "relativeCreated": 40440.604883, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:38,565" + } + ], + "time_consumption": 0.05479288101196289 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.6208797, + "msecs": 620.0, + "relativeCreated": 40495.688892, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:38,620", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.620796, + "msecs": 620.0, + "relativeCreated": 40495.605235, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:38,620" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.6208434, + "msecs": 620.0, + "relativeCreated": 40495.652746, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:38,620" + } + ], + "time_consumption": 3.62396240234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888878.7214234, + "msecs": 721.0, + "relativeCreated": 40596.232495, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.main_light) to 100", + "asctime": "2025-08-22 20:54:38,721", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.6209772, + "msecs": 620.0, + "relativeCreated": 40495.786456, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:38,620" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.6229434, + "msecs": 622.0, + "relativeCreated": 40497.752752, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:38,622" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.623163, + "msecs": 623.0, + "relativeCreated": 40497.972235, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,623" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.6239648, + "msecs": 623.0, + "relativeCreated": 40498.774017, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,623" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.6660662, + "msecs": 666.0, + "relativeCreated": 40540.875347, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:38,666" + } + ], + "time_consumption": 0.05535721778869629 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.72177, + "msecs": 721.0, + "relativeCreated": 40596.57915, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:38,721", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.721636, + "msecs": 721.0, + "relativeCreated": 40596.44533, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:38,721" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.7217326, + "msecs": 721.0, + "relativeCreated": 40596.541782, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:38,721" + } + ], + "time_consumption": 3.743171691894531e-05 + } + ], + "time_consumption": 0.8070530891418457, + "time_start": "2025-08-22 20:54:37,914", + "time_finished": "2025-08-22 20:54:38,721" + }, + "Light.brightness (gfw.dirk.main_light) -> ViDevLight.brightness (gfw.dirk.main_light)": { + "name": "__tLogger__", + "msg": "Light.brightness (gfw.dirk.main_light) -> ViDevLight.brightness (gfw.dirk.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888878.7220082, + "msecs": 722.0, + "relativeCreated": 40596.81747, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (gfw.dirk.main_light) -> ViDevLight.brightness (gfw.dirk.main_light)", + "asctime": "2025-08-22 20:54:38,722", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888878.8223817, + "msecs": 822.0, + "relativeCreated": 40697.191142, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:38,822", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888878.9232032, + "msecs": 923.0, + "relativeCreated": 40798.012501, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:38,923", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.822649, + "msecs": 822.0, + "relativeCreated": 40697.458305, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:38,822" + } + ], + "time_consumption": 0.10055422782897949 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888878.923597, + "msecs": 923.0, + "relativeCreated": 40798.406306, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:38,923", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888878.9234416, + "msecs": 923.0, + "relativeCreated": 40798.250973, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:38,923" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888878.9235396, + "msecs": 923.0, + "relativeCreated": 40798.348984, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:38,923" + } + ], + "time_consumption": 5.745887756347656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.0243506, + "msecs": 24.0, + "relativeCreated": 40899.160078, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.main_light) to 0", + "asctime": "2025-08-22 20:54:39,024", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888878.9238045, + "msecs": 923.0, + "relativeCreated": 40798.613739, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:38,923" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.924733, + "msecs": 924.0, + "relativeCreated": 40799.542179, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:38,924" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888878.9259899, + "msecs": 925.0, + "relativeCreated": 40800.799079, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:38,925" + } + ], + "time_consumption": 0.09836077690124512 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.024718, + "msecs": 24.0, + "relativeCreated": 40899.527273, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:39,024", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.024567, + "msecs": 24.0, + "relativeCreated": 40899.376006, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:39,024" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.0246437, + "msecs": 24.0, + "relativeCreated": 40899.452759, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:39,024" + } + ], + "time_consumption": 7.43865966796875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.main_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.1252313, + "msecs": 125.0, + "relativeCreated": 41000.040554, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.main_light) to 20", + "asctime": "2025-08-22 20:54:39,125", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.024876, + "msecs": 24.0, + "relativeCreated": 40899.685245, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:39,024" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.0257695, + "msecs": 25.0, + "relativeCreated": 40900.578734, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:39,025" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.0271103, + "msecs": 27.0, + "relativeCreated": 40901.919644, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:39,027" + } + ], + "time_consumption": 0.09812092781066895 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.125584, + "msecs": 125.0, + "relativeCreated": 41000.393096, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:39,125", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.1254606, + "msecs": 125.0, + "relativeCreated": 41000.26985, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:39,125" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.1255155, + "msecs": 125.0, + "relativeCreated": 41000.324876, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:39,125" + } + ], + "time_consumption": 6.842613220214844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.main_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.2263021, + "msecs": 226.0, + "relativeCreated": 41101.111377, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.main_light) to 40", + "asctime": "2025-08-22 20:54:39,226", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.1257603, + "msecs": 125.0, + "relativeCreated": 41000.56961, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:39,125" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.1265543, + "msecs": 126.0, + "relativeCreated": 41001.363557, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:39,126" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.1279178, + "msecs": 127.0, + "relativeCreated": 41002.727036, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:39,127" + } + ], + "time_consumption": 0.09838438034057617 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.2266097, + "msecs": 226.0, + "relativeCreated": 41101.418937, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:39,226", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.2265186, + "msecs": 226.0, + "relativeCreated": 41101.327638, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:39,226" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.2265716, + "msecs": 226.0, + "relativeCreated": 41101.380772, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:39,226" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.main_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.327345, + "msecs": 327.0, + "relativeCreated": 41202.154055, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.main_light) to 60", + "asctime": "2025-08-22 20:54:39,327", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.2268338, + "msecs": 226.0, + "relativeCreated": 41101.643098, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:39,226" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.2278109, + "msecs": 227.0, + "relativeCreated": 41102.620101, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:39,227" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.2290945, + "msecs": 229.0, + "relativeCreated": 41103.903741, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:39,229" + } + ], + "time_consumption": 0.0982503890991211 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.3277073, + "msecs": 327.0, + "relativeCreated": 41202.516522, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:39,327", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.3275602, + "msecs": 327.0, + "relativeCreated": 41202.369552, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:39,327" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.3276386, + "msecs": 327.0, + "relativeCreated": 41202.447848, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:39,327" + } + ], + "time_consumption": 6.866455078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.main_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.4282494, + "msecs": 428.0, + "relativeCreated": 41303.058699, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.main_light) to 80", + "asctime": "2025-08-22 20:54:39,428", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.3278725, + "msecs": 327.0, + "relativeCreated": 41202.681666, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:39,327" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.3288, + "msecs": 328.0, + "relativeCreated": 41203.609145, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:39,328" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.3300357, + "msecs": 330.0, + "relativeCreated": 41204.845051, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:39,330" + } + ], + "time_consumption": 0.09821367263793945 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.4285975, + "msecs": 428.0, + "relativeCreated": 41303.406665, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:39,428", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.4284773, + "msecs": 428.0, + "relativeCreated": 41303.286392, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:39,428" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.4285555, + "msecs": 428.0, + "relativeCreated": 41303.364744, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:39,428" + } + ], + "time_consumption": 4.1961669921875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.main_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.5293036, + "msecs": 529.0, + "relativeCreated": 41404.112731, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.main_light) to 100", + "asctime": "2025-08-22 20:54:39,529", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.428791, + "msecs": 428.0, + "relativeCreated": 41303.600225, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:39,428" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.4297295, + "msecs": 429.0, + "relativeCreated": 41304.538687, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:39,429" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.4311173, + "msecs": 431.0, + "relativeCreated": 41305.926634, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:39,431" + } + ], + "time_consumption": 0.09818625450134277 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.529639, + "msecs": 529.0, + "relativeCreated": 41404.44808, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:39,529", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.5295386, + "msecs": 529.0, + "relativeCreated": 41404.347747, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:39,529" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.main_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.5295954, + "msecs": 529.0, + "relativeCreated": 41404.404698, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:39,529" + } + ], + "time_consumption": 4.363059997558594e-05 + } + ], + "time_consumption": 0.8076307773590088, + "time_start": "2025-08-22 20:54:38,722", + "time_finished": "2025-08-22 20:54:39,529" + }, + "ViDevLight.color_temp (gfw.dirk.main_light) -> Light.color_temp (gfw.dirk.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.color_temp (gfw.dirk.main_light) -> Light.color_temp (gfw.dirk.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888879.5299149, + "msecs": 529.0, + "relativeCreated": 41404.724191, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.color_temp (gfw.dirk.main_light) -> Light.color_temp (gfw.dirk.main_light)", + "asctime": "2025-08-22 20:54:39,529", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888879.6301274, + "msecs": 630.0, + "relativeCreated": 41504.936495, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:39,630", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888879.7309532, + "msecs": 730.0, + "relativeCreated": 41605.762539, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:39,730", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.6303988, + "msecs": 630.0, + "relativeCreated": 41505.207906, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:39,630" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.6307027, + "msecs": 630.0, + "relativeCreated": 41505.512129, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:39,630" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.6325474, + "msecs": 632.0, + "relativeCreated": 41507.356468, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:39,632" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.632906, + "msecs": 632.0, + "relativeCreated": 41507.715225, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:39,632" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.6755037, + "msecs": 675.0, + "relativeCreated": 41550.312943, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:39,675" + } + ], + "time_consumption": 0.055449485778808594 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.7313254, + "msecs": 731.0, + "relativeCreated": 41606.134574, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:39,731", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.7311947, + "msecs": 731.0, + "relativeCreated": 41606.00376, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:39,731" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.7312815, + "msecs": 731.0, + "relativeCreated": 41606.090755, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:39,731" + } + ], + "time_consumption": 4.38690185546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.8319175, + "msecs": 831.0, + "relativeCreated": 41706.726722, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.main_light) to 0", + "asctime": "2025-08-22 20:54:39,831", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.7314434, + "msecs": 731.0, + "relativeCreated": 41606.252737, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 0", + "asctime": "2025-08-22 20:54:39,731" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.7338629, + "msecs": 733.0, + "relativeCreated": 41608.672242, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:39,733" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.7340941, + "msecs": 734.0, + "relativeCreated": 41608.90343, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:39,734" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.7349155, + "msecs": 734.0, + "relativeCreated": 41609.724762, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:39,734" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.775342, + "msecs": 775.0, + "relativeCreated": 41650.151272, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:39,775" + } + ], + "time_consumption": 0.05657553672790527 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.8322587, + "msecs": 832.0, + "relativeCreated": 41707.068118, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:39,832", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.8321388, + "msecs": 832.0, + "relativeCreated": 41706.948092, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:39,832" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.8322186, + "msecs": 832.0, + "relativeCreated": 41707.027759, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:39,832" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888879.932842, + "msecs": 932.0, + "relativeCreated": 41807.651125, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.main_light) to 2", + "asctime": "2025-08-22 20:54:39,932", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.8323667, + "msecs": 832.0, + "relativeCreated": 41707.175866, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 2", + "asctime": "2025-08-22 20:54:39,832" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.8347266, + "msecs": 834.0, + "relativeCreated": 41709.535928, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:39,834" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.834964, + "msecs": 834.0, + "relativeCreated": 41709.773251, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:39,834" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.8356824, + "msecs": 835.0, + "relativeCreated": 41710.491445, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:39,835" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.8763926, + "msecs": 876.0, + "relativeCreated": 41751.201852, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:39,876" + } + ], + "time_consumption": 0.05644941329956055 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888879.9331563, + "msecs": 933.0, + "relativeCreated": 41807.965523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:39,933", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888879.9330614, + "msecs": 933.0, + "relativeCreated": 41807.870613, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:39,933" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888879.933117, + "msecs": 933.0, + "relativeCreated": 41807.926098, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:39,933" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.033778, + "msecs": 33.0, + "relativeCreated": 41908.587074, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.main_light) to 4", + "asctime": "2025-08-22 20:54:40,033", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.933262, + "msecs": 933.0, + "relativeCreated": 41808.07133, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 4", + "asctime": "2025-08-22 20:54:39,933" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.9354208, + "msecs": 935.0, + "relativeCreated": 41810.229806, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:39,935" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888879.9356413, + "msecs": 935.0, + "relativeCreated": 41810.450642, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:39,935" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.9362113, + "msecs": 936.0, + "relativeCreated": 41811.020778, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:39,936" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888879.977448, + "msecs": 977.0, + "relativeCreated": 41852.257232, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:39,977" + } + ], + "time_consumption": 0.056329965591430664 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.034093, + "msecs": 34.0, + "relativeCreated": 41908.90202, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:40,034", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.0339966, + "msecs": 33.0, + "relativeCreated": 41908.80575, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:40,033" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.0340514, + "msecs": 34.0, + "relativeCreated": 41908.860552, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:40,034" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.1345918, + "msecs": 134.0, + "relativeCreated": 42009.400863, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.main_light) to 6", + "asctime": "2025-08-22 20:54:40,134", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.0342264, + "msecs": 34.0, + "relativeCreated": 41909.035577, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 6", + "asctime": "2025-08-22 20:54:40,034" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.0367253, + "msecs": 36.0, + "relativeCreated": 41911.534418, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:40,036" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.036949, + "msecs": 36.0, + "relativeCreated": 41911.758123, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:40,036" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.0377696, + "msecs": 37.0, + "relativeCreated": 41912.578828, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:40,037" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.07847, + "msecs": 78.0, + "relativeCreated": 41953.279242, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:40,078" + } + ], + "time_consumption": 0.056121826171875 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.1349468, + "msecs": 134.0, + "relativeCreated": 42009.755946, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:40,134", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.1348248, + "msecs": 134.0, + "relativeCreated": 42009.633832, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:40,134" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.1349041, + "msecs": 134.0, + "relativeCreated": 42009.713402, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:40,134" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.2354307, + "msecs": 235.0, + "relativeCreated": 42110.239876, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.main_light) to 8", + "asctime": "2025-08-22 20:54:40,235", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.1350567, + "msecs": 135.0, + "relativeCreated": 42009.865799, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 8", + "asctime": "2025-08-22 20:54:40,135" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.1373804, + "msecs": 137.0, + "relativeCreated": 42012.189475, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:40,137" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.1376112, + "msecs": 137.0, + "relativeCreated": 42012.420479, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:40,137" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.1382096, + "msecs": 138.0, + "relativeCreated": 42013.018677, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:40,138" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.1808388, + "msecs": 180.0, + "relativeCreated": 42055.648189, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:40,180" + } + ], + "time_consumption": 0.05459189414978027 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.2357786, + "msecs": 235.0, + "relativeCreated": 42110.587868, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:40,235", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.235646, + "msecs": 235.0, + "relativeCreated": 42110.455157, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:40,235" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.2357397, + "msecs": 235.0, + "relativeCreated": 42110.548787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:40,235" + } + ], + "time_consumption": 3.886222839355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.336354, + "msecs": 336.0, + "relativeCreated": 42211.163271, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.main_light) to 10", + "asctime": "2025-08-22 20:54:40,336", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.23589, + "msecs": 235.0, + "relativeCreated": 42110.699162, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:40,235" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.238238, + "msecs": 238.0, + "relativeCreated": 42113.047541, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:40,238" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.2384458, + "msecs": 238.0, + "relativeCreated": 42113.255021, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:40,238" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.2391553, + "msecs": 239.0, + "relativeCreated": 42113.96449, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:40,239" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.2807343, + "msecs": 280.0, + "relativeCreated": 42155.543384, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:40,280" + } + ], + "time_consumption": 0.05561971664428711 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.3366985, + "msecs": 336.0, + "relativeCreated": 42211.507814, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:40,336", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.3365755, + "msecs": 336.0, + "relativeCreated": 42211.384744, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:40,336" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.3366292, + "msecs": 336.0, + "relativeCreated": 42211.438579, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:40,336" + } + ], + "time_consumption": 6.937980651855469e-05 + } + ], + "time_consumption": 0.8067836761474609, + "time_start": "2025-08-22 20:54:39,529", + "time_finished": "2025-08-22 20:54:40,336" + }, + "Light.color_temp (gfw.dirk.main_light) -> ViDevLight.color_temp (gfw.dirk.main_light)": { + "name": "__tLogger__", + "msg": "Light.color_temp (gfw.dirk.main_light) -> ViDevLight.color_temp (gfw.dirk.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888880.336908, + "msecs": 336.0, + "relativeCreated": 42211.71721, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.color_temp (gfw.dirk.main_light) -> ViDevLight.color_temp (gfw.dirk.main_light)", + "asctime": "2025-08-22 20:54:40,336", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888880.4373162, + "msecs": 437.0, + "relativeCreated": 42312.125216, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:40,437", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888880.5381272, + "msecs": 538.0, + "relativeCreated": 42412.936256, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:40,538", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp/set", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.4375992, + "msecs": 437.0, + "relativeCreated": 42312.408357, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:40,437" + } + ], + "time_consumption": 0.10052800178527832 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.5385666, + "msecs": 538.0, + "relativeCreated": 42413.375892, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:40,538", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.5383692, + "msecs": 538.0, + "relativeCreated": 42413.178584, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:40,538" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.5384684, + "msecs": 538.0, + "relativeCreated": 42413.277594, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:40,538" + } + ], + "time_consumption": 9.822845458984375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.main_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.639204, + "msecs": 639.0, + "relativeCreated": 42514.013255, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.main_light) to 0", + "asctime": "2025-08-22 20:54:40,639", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.5387702, + "msecs": 538.0, + "relativeCreated": 42413.57943, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:40,538" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.5396438, + "msecs": 539.0, + "relativeCreated": 42414.452839, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:40,539" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.5412085, + "msecs": 541.0, + "relativeCreated": 42416.01789, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:40,541" + } + ], + "time_consumption": 0.09799551963806152 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.639541, + "msecs": 639.0, + "relativeCreated": 42514.350106, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:40,639", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.639422, + "msecs": 639.0, + "relativeCreated": 42514.231152, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:40,639" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.6394985, + "msecs": 639.0, + "relativeCreated": 42514.307856, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:40,639" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.main_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.7402318, + "msecs": 740.0, + "relativeCreated": 42615.041006, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.main_light) to 2", + "asctime": "2025-08-22 20:54:40,740", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.6397278, + "msecs": 639.0, + "relativeCreated": 42514.537211, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:40,639" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.6405773, + "msecs": 640.0, + "relativeCreated": 42515.386414, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:40,640" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.6422577, + "msecs": 642.0, + "relativeCreated": 42517.06692, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:40,642" + } + ], + "time_consumption": 0.09797406196594238 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.740551, + "msecs": 740.0, + "relativeCreated": 42615.360133, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:40,740", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.740456, + "msecs": 740.0, + "relativeCreated": 42615.265468, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:40,740" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.7405105, + "msecs": 740.0, + "relativeCreated": 42615.319728, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:40,740" + } + ], + "time_consumption": 4.0531158447265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.main_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.841297, + "msecs": 841.0, + "relativeCreated": 42716.106147, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.main_light) to 4", + "asctime": "2025-08-22 20:54:40,841", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.7407455, + "msecs": 740.0, + "relativeCreated": 42615.554579, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:40,740" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.7418609, + "msecs": 741.0, + "relativeCreated": 42616.670083, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:40,741" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.7436163, + "msecs": 743.0, + "relativeCreated": 42618.425552, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:40,743" + } + ], + "time_consumption": 0.09768056869506836 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.8416188, + "msecs": 841.0, + "relativeCreated": 42716.427955, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:40,841", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.841523, + "msecs": 841.0, + "relativeCreated": 42716.332101, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:40,841" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.8415787, + "msecs": 841.0, + "relativeCreated": 42716.387886, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:40,841" + } + ], + "time_consumption": 4.00543212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.main_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888880.9422946, + "msecs": 942.0, + "relativeCreated": 42817.103884, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.main_light) to 6", + "asctime": "2025-08-22 20:54:40,942", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.8418138, + "msecs": 841.0, + "relativeCreated": 42716.623048, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:40,841" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.8429637, + "msecs": 842.0, + "relativeCreated": 42717.772987, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:40,842" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.8445826, + "msecs": 844.0, + "relativeCreated": 42719.39198, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:40,844" + } + ], + "time_consumption": 0.09771203994750977 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888880.9426458, + "msecs": 942.0, + "relativeCreated": 42817.455089, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:40,942", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888880.9425244, + "msecs": 942.0, + "relativeCreated": 42817.333634, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:40,942" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888880.942603, + "msecs": 942.0, + "relativeCreated": 42817.412236, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:40,942" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.main_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.0431893, + "msecs": 43.0, + "relativeCreated": 42917.998575, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.main_light) to 8", + "asctime": "2025-08-22 20:54:41,043", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888880.942841, + "msecs": 942.0, + "relativeCreated": 42817.650278, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:40,942" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.94386, + "msecs": 943.0, + "relativeCreated": 42818.669327, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:40,943" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888880.9455051, + "msecs": 945.0, + "relativeCreated": 42820.314358, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:40,945" + } + ], + "time_consumption": 0.09768414497375488 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.0434613, + "msecs": 43.0, + "relativeCreated": 42918.270717, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:41,043", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.0433714, + "msecs": 43.0, + "relativeCreated": 42918.180856, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:41,043" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.0434222, + "msecs": 43.0, + "relativeCreated": 42918.231383, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:41,043" + } + ], + "time_consumption": 3.910064697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.main_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.1441343, + "msecs": 144.0, + "relativeCreated": 43018.943725, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.main_light) to 10", + "asctime": "2025-08-22 20:54:41,144", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.0435958, + "msecs": 43.0, + "relativeCreated": 42918.405046, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:41,043" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.0443747, + "msecs": 44.0, + "relativeCreated": 42919.183961, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:41,044" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.0457637, + "msecs": 45.0, + "relativeCreated": 42920.573178, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:41,045" + } + ], + "time_consumption": 0.09837055206298828 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.144458, + "msecs": 144.0, + "relativeCreated": 43019.26729, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:41,144", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.1443613, + "msecs": 144.0, + "relativeCreated": 43019.17045, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:41,144" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.main_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.144417, + "msecs": 144.0, + "relativeCreated": 43019.226318, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:41,144" + } + ], + "time_consumption": 4.100799560546875e-05 + } + ], + "time_consumption": 0.8075499534606934, + "time_start": "2025-08-22 20:54:40,336", + "time_finished": "2025-08-22 20:54:41,144" + }, + "ViDevLight.brightness (gfw.dirk.desk_light) -> Light.brightness (gfw.dirk.desk_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.brightness (gfw.dirk.desk_light) -> Light.brightness (gfw.dirk.desk_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888881.1447086, + "msecs": 144.0, + "relativeCreated": 43019.517787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.brightness (gfw.dirk.desk_light) -> Light.brightness (gfw.dirk.desk_light)", + "asctime": "2025-08-22 20:54:41,144", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888881.2454016, + "msecs": 245.0, + "relativeCreated": 43120.210877, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:41,245", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.1449134, + "msecs": 144.0, + "relativeCreated": 43019.722519, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,144" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.145888, + "msecs": 145.0, + "relativeCreated": 43020.697314, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,145" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.1481116, + "msecs": 148.0, + "relativeCreated": 43022.920757, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:41,148" + } + ], + "time_consumption": 0.0972900390625 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888881.3462915, + "msecs": 346.0, + "relativeCreated": 43221.100768, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:41,346", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.2457278, + "msecs": 245.0, + "relativeCreated": 43120.537073, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:41,245" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.2460363, + "msecs": 246.0, + "relativeCreated": 43120.845562, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,246" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.2482347, + "msecs": 248.0, + "relativeCreated": 43123.04387, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:41,248" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.2486017, + "msecs": 248.0, + "relativeCreated": 43123.410869, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,248" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.2905982, + "msecs": 290.0, + "relativeCreated": 43165.407464, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:41,290" + } + ], + "time_consumption": 0.05569338798522949 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.3466408, + "msecs": 346.0, + "relativeCreated": 43221.450118, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:41,346", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.3465145, + "msecs": 346.0, + "relativeCreated": 43221.323664, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:41,346" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.3465998, + "msecs": 346.0, + "relativeCreated": 43221.409051, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:41,346" + } + ], + "time_consumption": 4.100799560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.desk_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.4471598, + "msecs": 447.0, + "relativeCreated": 43321.969018, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.desk_light) to 0", + "asctime": "2025-08-22 20:54:41,447", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.346776, + "msecs": 346.0, + "relativeCreated": 43221.585397, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 0", + "asctime": "2025-08-22 20:54:41,346" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"brightness\": 1}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.3492644, + "msecs": 349.0, + "relativeCreated": 43224.073649, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 1}'", + "asctime": "2025-08-22 20:54:41,349" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.349493, + "msecs": 349.0, + "relativeCreated": 43224.302156, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,349" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.350153, + "msecs": 350.0, + "relativeCreated": 43224.962122, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,350" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.3916976, + "msecs": 391.0, + "relativeCreated": 43266.506841, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:41,391" + } + ], + "time_consumption": 0.05546212196350098 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.4474916, + "msecs": 447.0, + "relativeCreated": 43322.300914, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:41,447", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.4473739, + "msecs": 447.0, + "relativeCreated": 43322.182991, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.desk_light)): 0 ()", + "asctime": "2025-08-22 20:54:41,447" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.447453, + "msecs": 447.0, + "relativeCreated": 43322.262224, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.desk_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:41,447" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.desk_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.5479686, + "msecs": 547.0, + "relativeCreated": 43422.777718, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.desk_light) to 20", + "asctime": "2025-08-22 20:54:41,547", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.447597, + "msecs": 447.0, + "relativeCreated": 43322.406224, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 20", + "asctime": "2025-08-22 20:54:41,447" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"brightness\": 52}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.4498296, + "msecs": 449.0, + "relativeCreated": 43324.638824, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 52}'", + "asctime": "2025-08-22 20:54:41,449" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.4500325, + "msecs": 450.0, + "relativeCreated": 43324.841536, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,450" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.4505258, + "msecs": 450.0, + "relativeCreated": 43325.33495, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,450" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.491567, + "msecs": 491.0, + "relativeCreated": 43366.376115, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:41,491" + } + ], + "time_consumption": 0.056401729583740234 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.5483, + "msecs": 548.0, + "relativeCreated": 43423.109166, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:41,548", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.5481813, + "msecs": 548.0, + "relativeCreated": 43422.990525, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.desk_light)): 20 ()", + "asctime": "2025-08-22 20:54:41,548" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.5482378, + "msecs": 548.0, + "relativeCreated": 43423.047068, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.desk_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:41,548" + } + ], + "time_consumption": 6.222724914550781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.desk_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.6488495, + "msecs": 648.0, + "relativeCreated": 43523.658764, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.desk_light) to 40", + "asctime": "2025-08-22 20:54:41,648", + "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", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.5484033, + "msecs": 548.0, + "relativeCreated": 43423.212389, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 40", + "asctime": "2025-08-22 20:54:41,548" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"brightness\": 102}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.5508995, + "msecs": 550.0, + "relativeCreated": 43425.708799, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 102}'", + "asctime": "2025-08-22 20:54:41,550" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.5511181, + "msecs": 551.0, + "relativeCreated": 43425.927219, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,551" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.5517545, + "msecs": 551.0, + "relativeCreated": 43426.563812, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,551" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.5923305, + "msecs": 592.0, + "relativeCreated": 43467.139801, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:41,592" + } + ], + "time_consumption": 0.0565190315246582 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.6491272, + "msecs": 649.0, + "relativeCreated": 43523.9363, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:41,649", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.6490402, + "msecs": 649.0, + "relativeCreated": 43523.849317, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.desk_light)): 40 ()", + "asctime": "2025-08-22 20:54:41,649" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.6490898, + "msecs": 649.0, + "relativeCreated": 43523.899072, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.desk_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:41,649" + } + ], + "time_consumption": 3.743171691894531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.desk_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.749583, + "msecs": 749.0, + "relativeCreated": 43624.392396, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.desk_light) to 60", + "asctime": "2025-08-22 20:54:41,749", + "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", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.6492424, + "msecs": 649.0, + "relativeCreated": 43524.051495, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 60", + "asctime": "2025-08-22 20:54:41,649" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"brightness\": 153}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.6511734, + "msecs": 651.0, + "relativeCreated": 43525.982522, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 153}'", + "asctime": "2025-08-22 20:54:41,651" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.651377, + "msecs": 651.0, + "relativeCreated": 43526.186217, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,651" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.6519656, + "msecs": 651.0, + "relativeCreated": 43526.774914, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,651" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.6936185, + "msecs": 693.0, + "relativeCreated": 43568.427572, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:41,693" + } + ], + "time_consumption": 0.05596446990966797 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.7499244, + "msecs": 749.0, + "relativeCreated": 43624.733504, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:41,749", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.7498066, + "msecs": 749.0, + "relativeCreated": 43624.615897, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.desk_light)): 60 ()", + "asctime": "2025-08-22 20:54:41,749" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.7498848, + "msecs": 749.0, + "relativeCreated": 43624.694131, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.desk_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:41,749" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.desk_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.8503926, + "msecs": 850.0, + "relativeCreated": 43725.201734, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.desk_light) to 80", + "asctime": "2025-08-22 20:54:41,850", + "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", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.7500272, + "msecs": 750.0, + "relativeCreated": 43624.836623, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 80", + "asctime": "2025-08-22 20:54:41,750" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"brightness\": 203}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.7523232, + "msecs": 752.0, + "relativeCreated": 43627.132232, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 203}'", + "asctime": "2025-08-22 20:54:41,752" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.7525425, + "msecs": 752.0, + "relativeCreated": 43627.351617, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,752" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.7531276, + "msecs": 753.0, + "relativeCreated": 43627.936901, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,753" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.7945654, + "msecs": 794.0, + "relativeCreated": 43669.374581, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:41,794" + } + ], + "time_consumption": 0.05582714080810547 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.8507452, + "msecs": 850.0, + "relativeCreated": 43725.554347, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:41,850", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.850612, + "msecs": 850.0, + "relativeCreated": 43725.421137, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.desk_light)): 80 ()", + "asctime": "2025-08-22 20:54:41,850" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.850705, + "msecs": 850.0, + "relativeCreated": 43725.514157, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.desk_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:41,850" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.brightness (gfw.dirk.desk_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888881.9511943, + "msecs": 951.0, + "relativeCreated": 43826.003688, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.brightness (gfw.dirk.desk_light) to 100", + "asctime": "2025-08-22 20:54:41,951", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.8508496, + "msecs": 850.0, + "relativeCreated": 43725.658694, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:41,850" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"brightness\": 254}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.8532, + "msecs": 853.0, + "relativeCreated": 43728.009206, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"brightness\": 254}'", + "asctime": "2025-08-22 20:54:41,853" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888881.8534045, + "msecs": 853.0, + "relativeCreated": 43728.21355, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:41,853" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.8540545, + "msecs": 854.0, + "relativeCreated": 43728.863595, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:41,854" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888881.8956387, + "msecs": 895.0, + "relativeCreated": 43770.448142, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:41,895" + } + ], + "time_consumption": 0.05555558204650879 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888881.951491, + "msecs": 951.0, + "relativeCreated": 43826.300305, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.dirk.desk_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:41,951", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888881.9513943, + "msecs": 951.0, + "relativeCreated": 43826.203612, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.brightness (gfw.dirk.desk_light)): 100 ()", + "asctime": "2025-08-22 20:54:41,951" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.brightness (gfw.dirk.desk_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888881.95144, + "msecs": 951.0, + "relativeCreated": 43826.249442, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.brightness (gfw.dirk.desk_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:41,951" + } + ], + "time_consumption": 5.1021575927734375e-05 + } + ], + "time_consumption": 0.8067824840545654, + "time_start": "2025-08-22 20:54:41,144", + "time_finished": "2025-08-22 20:54:41,951" + }, + "Light.brightness (gfw.dirk.desk_light) -> ViDevLight.brightness (gfw.dirk.desk_light)": { + "name": "__tLogger__", + "msg": "Light.brightness (gfw.dirk.desk_light) -> ViDevLight.brightness (gfw.dirk.desk_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888881.9517016, + "msecs": 951.0, + "relativeCreated": 43826.510929, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.brightness (gfw.dirk.desk_light) -> ViDevLight.brightness (gfw.dirk.desk_light)", + "asctime": "2025-08-22 20:54:41,951", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888882.0519216, + "msecs": 51.0, + "relativeCreated": 43926.730784, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:42,051", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888882.1526906, + "msecs": 152.0, + "relativeCreated": 44027.499931, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 100", + "asctime": "2025-08-22 20:54:42,152", + "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", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.0521708, + "msecs": 52.0, + "relativeCreated": 43926.979983, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 100", + "asctime": "2025-08-22 20:54:42,052" + } + ], + "time_consumption": 0.10051989555358887 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(100, 100)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.153055, + "msecs": 153.0, + "relativeCreated": 44027.864252, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", + "asctime": "2025-08-22 20:54:42,153", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.1529205, + "msecs": 152.0, + "relativeCreated": 44027.729726, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (100, 100) ()", + "asctime": "2025-08-22 20:54:42,152" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(100, 100)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.1530094, + "msecs": 153.0, + "relativeCreated": 44027.818521, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", + "asctime": "2025-08-22 20:54:42,153" + } + ], + "time_consumption": 4.553794860839844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.desk_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888882.2537594, + "msecs": 253.0, + "relativeCreated": 44128.568694, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.desk_light) to 0", + "asctime": "2025-08-22 20:54:42,253", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.1532116, + "msecs": 153.0, + "relativeCreated": 44028.020956, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:42,153" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.154372, + "msecs": 154.0, + "relativeCreated": 44029.181299, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:42,154" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.1559494, + "msecs": 155.0, + "relativeCreated": 44030.758443, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'0'", + "asctime": "2025-08-22 20:54:42,155" + } + ], + "time_consumption": 0.09781002998352051 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.2541404, + "msecs": 254.0, + "relativeCreated": 44128.94966, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:42,254", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.2539878, + "msecs": 253.0, + "relativeCreated": 44128.797078, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.desk_light)): 0 ()", + "asctime": "2025-08-22 20:54:42,253" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.2540648, + "msecs": 254.0, + "relativeCreated": 44128.874164, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.desk_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:42,254" + } + ], + "time_consumption": 7.557868957519531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.desk_light)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888882.3548455, + "msecs": 354.0, + "relativeCreated": 44229.654722, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.desk_light) to 20", + "asctime": "2025-08-22 20:54:42,354", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.2543154, + "msecs": 254.0, + "relativeCreated": 44129.124428, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:42,254" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.2554238, + "msecs": 255.0, + "relativeCreated": 44130.233092, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:42,255" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.256814, + "msecs": 256.0, + "relativeCreated": 44131.62332, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'20'", + "asctime": "2025-08-22 20:54:42,256" + } + ], + "time_consumption": 0.09803152084350586 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.3551815, + "msecs": 355.0, + "relativeCreated": 44229.990783, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:42,355", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.3550847, + "msecs": 355.0, + "relativeCreated": 44229.893783, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.desk_light)): 20 ()", + "asctime": "2025-08-22 20:54:42,355" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.3551404, + "msecs": 355.0, + "relativeCreated": 44229.949504, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.desk_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:42,355" + } + ], + "time_consumption": 4.100799560546875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.desk_light)", + "40" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888882.4558623, + "msecs": 455.0, + "relativeCreated": 44330.671558, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.desk_light) to 40", + "asctime": "2025-08-22 20:54:42,455", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.355345, + "msecs": 355.0, + "relativeCreated": 44230.154138, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:42,355" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.3563354, + "msecs": 356.0, + "relativeCreated": 44231.144503, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:42,356" + }, + { + "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'40'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.3578315, + "msecs": 357.0, + "relativeCreated": 44232.640689, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'40'", + "asctime": "2025-08-22 20:54:42,357" + } + ], + "time_consumption": 0.09803080558776855 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.456189, + "msecs": 456.0, + "relativeCreated": 44330.998189, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:42,456", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.4560907, + "msecs": 456.0, + "relativeCreated": 44330.899816, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.desk_light)): 40 ()", + "asctime": "2025-08-22 20:54:42,456" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "=", + "40", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.4561474, + "msecs": 456.0, + "relativeCreated": 44330.956681, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.desk_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:42,456" + } + ], + "time_consumption": 4.1484832763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.desk_light)", + "60" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888882.5567153, + "msecs": 556.0, + "relativeCreated": 44431.524383, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.desk_light) to 60", + "asctime": "2025-08-22 20:54:42,556", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.4563541, + "msecs": 456.0, + "relativeCreated": 44331.163377, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:42,456" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.4574695, + "msecs": 457.0, + "relativeCreated": 44332.278779, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:42,457" + }, + { + "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'60'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.4587758, + "msecs": 458.0, + "relativeCreated": 44333.585077, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'60'", + "asctime": "2025-08-22 20:54:42,458" + } + ], + "time_consumption": 0.09793949127197266 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.557011, + "msecs": 557.0, + "relativeCreated": 44431.820272, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:42,557", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.5569088, + "msecs": 556.0, + "relativeCreated": 44431.718007, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.desk_light)): 60 ()", + "asctime": "2025-08-22 20:54:42,556" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "=", + "60", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.5569677, + "msecs": 556.0, + "relativeCreated": 44431.777021, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.desk_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:42,556" + } + ], + "time_consumption": 4.315376281738281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.desk_light)", + "80" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888882.6575136, + "msecs": 657.0, + "relativeCreated": 44532.323059, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.desk_light) to 80", + "asctime": "2025-08-22 20:54:42,657", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.5571616, + "msecs": 557.0, + "relativeCreated": 44431.970752, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:42,557" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.5579338, + "msecs": 557.0, + "relativeCreated": 44432.743125, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:42,557" + }, + { + "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'80'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.559478, + "msecs": 559.0, + "relativeCreated": 44434.287157, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'80'", + "asctime": "2025-08-22 20:54:42,559" + } + ], + "time_consumption": 0.09803557395935059 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.6578698, + "msecs": 657.0, + "relativeCreated": 44532.679121, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:42,657", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.657752, + "msecs": 657.0, + "relativeCreated": 44532.561224, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.desk_light)): 80 ()", + "asctime": "2025-08-22 20:54:42,657" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "=", + "80", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.6578236, + "msecs": 657.0, + "relativeCreated": 44532.632611, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.desk_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:42,657" + } + ], + "time_consumption": 4.6253204345703125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.brightness (gfw.dirk.desk_light)", + "100" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888882.7584352, + "msecs": 758.0, + "relativeCreated": 44633.244456, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.brightness (gfw.dirk.desk_light) to 100", + "asctime": "2025-08-22 20:54:42,758", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.6580448, + "msecs": 658.0, + "relativeCreated": 44532.854128, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:42,658" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.659029, + "msecs": 659.0, + "relativeCreated": 44533.838269, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:42,659" + }, + { + "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'100'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.6604953, + "msecs": 660.0, + "relativeCreated": 44535.304721, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'100'", + "asctime": "2025-08-22 20:54:42,660" + } + ], + "time_consumption": 0.09793996810913086 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.7587805, + "msecs": 758.0, + "relativeCreated": 44633.589678, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.dirk.desk_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:42,758", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.7586834, + "msecs": 758.0, + "relativeCreated": 44633.492734, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.brightness (gfw.dirk.desk_light)): 100 ()", + "asctime": "2025-08-22 20:54:42,758" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.brightness (gfw.dirk.desk_light)", + "=", + "100", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.75874, + "msecs": 758.0, + "relativeCreated": 44633.549326, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.brightness (gfw.dirk.desk_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:42,758" + } + ], + "time_consumption": 4.0531158447265625e-05 + } + ], + "time_consumption": 0.8070788383483887, + "time_start": "2025-08-22 20:54:41,951", + "time_finished": "2025-08-22 20:54:42,758" + }, + "ViDevLight.color_temp (gfw.dirk.desk_light) -> Light.color_temp (gfw.dirk.desk_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.color_temp (gfw.dirk.desk_light) -> Light.color_temp (gfw.dirk.desk_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888882.758996, + "msecs": 758.0, + "relativeCreated": 44633.805081, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.color_temp (gfw.dirk.desk_light) -> Light.color_temp (gfw.dirk.desk_light)", + "asctime": "2025-08-22 20:54:42,758", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888882.8592732, + "msecs": 859.0, + "relativeCreated": 44734.082485, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:42,859", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888882.960288, + "msecs": 960.0, + "relativeCreated": 44835.097178, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:42,960", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.8595834, + "msecs": 859.0, + "relativeCreated": 44734.392726, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:42,859" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.8599024, + "msecs": 859.0, + "relativeCreated": 44734.711677, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:42,859" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.8622937, + "msecs": 862.0, + "relativeCreated": 44737.102976, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:42,862" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.8626864, + "msecs": 862.0, + "relativeCreated": 44737.495727, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:42,862" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.9049773, + "msecs": 904.0, + "relativeCreated": 44779.786634, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:42,904" + } + ], + "time_consumption": 0.055310726165771484 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888882.960625, + "msecs": 960.0, + "relativeCreated": 44835.434037, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:42,960", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888882.9605107, + "msecs": 960.0, + "relativeCreated": 44835.319884, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:42,960" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888882.9605846, + "msecs": 960.0, + "relativeCreated": 44835.393841, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:42,960" + } + ], + "time_consumption": 4.029273986816406e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.desk_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.061267, + "msecs": 61.0, + "relativeCreated": 44936.076186, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.desk_light) to 0", + "asctime": "2025-08-22 20:54:43,061", + "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", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.9607635, + "msecs": 960.0, + "relativeCreated": 44835.572743, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 0", + "asctime": "2025-08-22 20:54:42,960" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 250}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.963129, + "msecs": 963.0, + "relativeCreated": 44837.938347, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 250}'", + "asctime": "2025-08-22 20:54:42,963" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888882.9633386, + "msecs": 963.0, + "relativeCreated": 44838.147766, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:42,963" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888882.9640784, + "msecs": 964.0, + "relativeCreated": 44838.887617, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:42,964" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.0058625, + "msecs": 5.0, + "relativeCreated": 44880.671618, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:43,005" + } + ], + "time_consumption": 0.0554044246673584 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.0616179, + "msecs": 61.0, + "relativeCreated": 44936.427254, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:43,061", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.061481, + "msecs": 61.0, + "relativeCreated": 44936.290068, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.desk_light)): 0 ()", + "asctime": "2025-08-22 20:54:43,061" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.0615785, + "msecs": 61.0, + "relativeCreated": 44936.387692, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.desk_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:43,061" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.desk_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.162109, + "msecs": 162.0, + "relativeCreated": 45036.918155, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.desk_light) to 2", + "asctime": "2025-08-22 20:54:43,162", + "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", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.0617554, + "msecs": 61.0, + "relativeCreated": 44936.56472, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 2", + "asctime": "2025-08-22 20:54:43,061" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.0639617, + "msecs": 63.0, + "relativeCreated": 44938.771137, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 291}'", + "asctime": "2025-08-22 20:54:43,063" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.0641692, + "msecs": 64.0, + "relativeCreated": 44938.978518, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:43,064" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.0648375, + "msecs": 64.0, + "relativeCreated": 44939.646488, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:43,064" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.1071093, + "msecs": 107.0, + "relativeCreated": 44981.918552, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:43,107" + } + ], + "time_consumption": 0.054999589920043945 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.1624327, + "msecs": 162.0, + "relativeCreated": 45037.241951, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:43,162", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.1623192, + "msecs": 162.0, + "relativeCreated": 45037.12828, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.desk_light)): 2 ()", + "asctime": "2025-08-22 20:54:43,162" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.162394, + "msecs": 162.0, + "relativeCreated": 45037.20341, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.desk_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:43,162" + } + ], + "time_consumption": 3.8623809814453125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.desk_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.2629025, + "msecs": 262.0, + "relativeCreated": 45137.711715, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.desk_light) to 4", + "asctime": "2025-08-22 20:54:43,262", + "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", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.1625397, + "msecs": 162.0, + "relativeCreated": 45037.349024, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 4", + "asctime": "2025-08-22 20:54:43,162" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 332}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.1649003, + "msecs": 164.0, + "relativeCreated": 45039.709473, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 332}'", + "asctime": "2025-08-22 20:54:43,164" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.1651082, + "msecs": 165.0, + "relativeCreated": 45039.917428, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:43,165" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.165801, + "msecs": 165.0, + "relativeCreated": 45040.610278, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:43,165" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.2067902, + "msecs": 206.0, + "relativeCreated": 45081.599411, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:43,206" + } + ], + "time_consumption": 0.05611228942871094 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.2632017, + "msecs": 263.0, + "relativeCreated": 45138.011076, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:43,263", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.2631133, + "msecs": 263.0, + "relativeCreated": 45137.922331, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.desk_light)): 4 ()", + "asctime": "2025-08-22 20:54:43,263" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.2631636, + "msecs": 263.0, + "relativeCreated": 45137.97291, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.desk_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:43,263" + } + ], + "time_consumption": 3.814697265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.desk_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.3637881, + "msecs": 363.0, + "relativeCreated": 45238.597238, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.desk_light) to 6", + "asctime": "2025-08-22 20:54:43,363", + "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", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.2633054, + "msecs": 263.0, + "relativeCreated": 45138.114704, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 6", + "asctime": "2025-08-22 20:54:43,263" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 372}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.2655993, + "msecs": 265.0, + "relativeCreated": 45140.408516, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 372}'", + "asctime": "2025-08-22 20:54:43,265" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.2658377, + "msecs": 265.0, + "relativeCreated": 45140.646889, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:43,265" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.2666194, + "msecs": 266.0, + "relativeCreated": 45141.428531, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:43,266" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.3075173, + "msecs": 307.0, + "relativeCreated": 45182.326359, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:43,307" + } + ], + "time_consumption": 0.05627083778381348 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.3641152, + "msecs": 364.0, + "relativeCreated": 45238.924516, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:43,364", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.363998, + "msecs": 363.0, + "relativeCreated": 45238.807183, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.desk_light)): 6 ()", + "asctime": "2025-08-22 20:54:43,363" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.364072, + "msecs": 364.0, + "relativeCreated": 45238.881315, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.desk_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:43,364" + } + ], + "time_consumption": 4.315376281738281e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.desk_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.4645936, + "msecs": 464.0, + "relativeCreated": 45339.403022, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.desk_light) to 8", + "asctime": "2025-08-22 20:54:43,464", + "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", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.3642194, + "msecs": 364.0, + "relativeCreated": 45239.028658, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 8", + "asctime": "2025-08-22 20:54:43,364" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 413}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.366523, + "msecs": 366.0, + "relativeCreated": 45241.332373, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 413}'", + "asctime": "2025-08-22 20:54:43,366" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.3667624, + "msecs": 366.0, + "relativeCreated": 45241.571802, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:43,366" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.3674324, + "msecs": 367.0, + "relativeCreated": 45242.2417, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:43,367" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.4090753, + "msecs": 409.0, + "relativeCreated": 45283.884429, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:43,409" + } + ], + "time_consumption": 0.055518388748168945 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.464934, + "msecs": 464.0, + "relativeCreated": 45339.743335, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:43,464", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.4648216, + "msecs": 464.0, + "relativeCreated": 45339.630836, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.desk_light)): 8 ()", + "asctime": "2025-08-22 20:54:43,464" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.4648948, + "msecs": 464.0, + "relativeCreated": 45339.703925, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.desk_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:43,464" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.color_temp (gfw.dirk.desk_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.5655046, + "msecs": 565.0, + "relativeCreated": 45440.313623, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.color_temp (gfw.dirk.desk_light) to 10", + "asctime": "2025-08-22 20:54:43,565", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.4650476, + "msecs": 465.0, + "relativeCreated": 45339.856858, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:43,465" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.4673593, + "msecs": 467.0, + "relativeCreated": 45342.168388, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:43,467" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.4675748, + "msecs": 467.0, + "relativeCreated": 45342.384119, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:43,467" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.4684024, + "msecs": 468.0, + "relativeCreated": 45343.211659, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:43,468" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.509499, + "msecs": 509.0, + "relativeCreated": 45384.308459, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:43,509" + } + ], + "time_consumption": 0.05600547790527344 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.56585, + "msecs": 565.0, + "relativeCreated": 45440.659419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.dirk.desk_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:43,565", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.565757, + "msecs": 565.0, + "relativeCreated": 45440.566284, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.color_temp (gfw.dirk.desk_light)): 10 ()", + "asctime": "2025-08-22 20:54:43,565" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.color_temp (gfw.dirk.desk_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.565812, + "msecs": 565.0, + "relativeCreated": 45440.621524, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.color_temp (gfw.dirk.desk_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:43,565" + } + ], + "time_consumption": 3.790855407714844e-05 + } + ], + "time_consumption": 0.8068540096282959, + "time_start": "2025-08-22 20:54:42,758", + "time_finished": "2025-08-22 20:54:43,565" + }, + "Light.color_temp (gfw.dirk.desk_light) -> ViDevLight.color_temp (gfw.dirk.desk_light)": { + "name": "__tLogger__", + "msg": "Light.color_temp (gfw.dirk.desk_light) -> ViDevLight.color_temp (gfw.dirk.desk_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888883.5660605, + "msecs": 566.0, + "relativeCreated": 45440.869679, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.color_temp (gfw.dirk.desk_light) -> ViDevLight.color_temp (gfw.dirk.desk_light)", + "asctime": "2025-08-22 20:54:43,566", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Switching on device", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 13, + "funcName": "device_follow", + "created": 1755888883.6663055, + "msecs": 666.0, + "relativeCreated": 45541.114787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Switching on device", + "asctime": "2025-08-22 20:54:43,666", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888883.7671204, + "msecs": 767.0, + "relativeCreated": 45641.929617, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 10", + "asctime": "2025-08-22 20:54:43,767", + "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", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.6666071, + "msecs": 666.0, + "relativeCreated": 45541.416389, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 10", + "asctime": "2025-08-22 20:54:43,666" + } + ], + "time_consumption": 0.10051321983337402 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(10, 10)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.7674878, + "msecs": 767.0, + "relativeCreated": 45642.296912, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", + "asctime": "2025-08-22 20:54:43,767", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.7673616, + "msecs": 767.0, + "relativeCreated": 45642.170786, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (10, 10) ()", + "asctime": "2025-08-22 20:54:43,767" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(10, 10)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.767445, + "msecs": 767.0, + "relativeCreated": 45642.25415, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", + "asctime": "2025-08-22 20:54:43,767" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.desk_light)", + "0" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.868228, + "msecs": 868.0, + "relativeCreated": 45743.037086, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.desk_light) to 0", + "asctime": "2025-08-22 20:54:43,868", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.7676804, + "msecs": 767.0, + "relativeCreated": 45642.489695, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", + "asctime": "2025-08-22 20:54:43,767" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.7688255, + "msecs": 768.0, + "relativeCreated": 45643.63496, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", + "asctime": "2025-08-22 20:54:43,768" + }, + { + "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'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.7700813, + "msecs": 770.0, + "relativeCreated": 45644.890531, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'0'", + "asctime": "2025-08-22 20:54:43,770" + } + ], + "time_consumption": 0.09814667701721191 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.8685818, + "msecs": 868.0, + "relativeCreated": 45743.391136, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:43,868", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.8684547, + "msecs": 868.0, + "relativeCreated": 45743.263935, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): 0 ()", + "asctime": "2025-08-22 20:54:43,868" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.868536, + "msecs": 868.0, + "relativeCreated": 45743.3452, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:43,868" + } + ], + "time_consumption": 4.57763671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.desk_light)", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888883.9693189, + "msecs": 969.0, + "relativeCreated": 45844.128173, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.desk_light) to 2", + "asctime": "2025-08-22 20:54:43,969", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.868779, + "msecs": 868.0, + "relativeCreated": 45743.588272, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", + "asctime": "2025-08-22 20:54:43,868" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.8698704, + "msecs": 869.0, + "relativeCreated": 45744.679487, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", + "asctime": "2025-08-22 20:54:43,869" + }, + { + "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'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.8711476, + "msecs": 871.0, + "relativeCreated": 45745.956729, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'2'", + "asctime": "2025-08-22 20:54:43,871" + } + ], + "time_consumption": 0.09817123413085938 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888883.9696395, + "msecs": 969.0, + "relativeCreated": 45844.448588, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:43,969", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888883.9695415, + "msecs": 969.0, + "relativeCreated": 45844.350874, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): 2 ()", + "asctime": "2025-08-22 20:54:43,969" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888883.969597, + "msecs": 969.0, + "relativeCreated": 45844.406458, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:43,969" + } + ], + "time_consumption": 4.2438507080078125e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.desk_light)", + "4" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.0703835, + "msecs": 70.0, + "relativeCreated": 45945.192965, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.desk_light) to 4", + "asctime": "2025-08-22 20:54:44,070", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888883.9698446, + "msecs": 969.0, + "relativeCreated": 45844.653739, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", + "asctime": "2025-08-22 20:54:43,969" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.9709747, + "msecs": 970.0, + "relativeCreated": 45845.783924, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", + "asctime": "2025-08-22 20:54:43,970" + }, + { + "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'4'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888883.9722874, + "msecs": 972.0, + "relativeCreated": 45847.096763, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'4'", + "asctime": "2025-08-22 20:54:43,972" + } + ], + "time_consumption": 0.09809613227844238 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.0707445, + "msecs": 70.0, + "relativeCreated": 45945.553827, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:44,070", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.0706096, + "msecs": 70.0, + "relativeCreated": 45945.418885, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): 4 ()", + "asctime": "2025-08-22 20:54:44,070" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "=", + "4", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.0707018, + "msecs": 70.0, + "relativeCreated": 45945.511094, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:44,070" + } + ], + "time_consumption": 4.267692565917969e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.desk_light)", + "6" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.171422, + "msecs": 171.0, + "relativeCreated": 46046.231182, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.desk_light) to 6", + "asctime": "2025-08-22 20:54:44,171", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.0709114, + "msecs": 70.0, + "relativeCreated": 45945.720655, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", + "asctime": "2025-08-22 20:54:44,070" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.0720139, + "msecs": 72.0, + "relativeCreated": 45946.822955, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", + "asctime": "2025-08-22 20:54:44,072" + }, + { + "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'6'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.0732043, + "msecs": 73.0, + "relativeCreated": 45948.013445, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'6'", + "asctime": "2025-08-22 20:54:44,073" + } + ], + "time_consumption": 0.09821772575378418 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.1718094, + "msecs": 171.0, + "relativeCreated": 46046.61886, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:44,171", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.1716497, + "msecs": 171.0, + "relativeCreated": 46046.458982, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): 6 ()", + "asctime": "2025-08-22 20:54:44,171" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "=", + "6", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.1717675, + "msecs": 171.0, + "relativeCreated": 46046.576862, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:44,171" + } + ], + "time_consumption": 4.1961669921875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.desk_light)", + "8" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.2724826, + "msecs": 272.0, + "relativeCreated": 46147.29179, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.desk_light) to 8", + "asctime": "2025-08-22 20:54:44,272", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.1719866, + "msecs": 171.0, + "relativeCreated": 46046.795961, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", + "asctime": "2025-08-22 20:54:44,171" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.1731026, + "msecs": 173.0, + "relativeCreated": 46047.911768, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", + "asctime": "2025-08-22 20:54:44,173" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.1744955, + "msecs": 174.0, + "relativeCreated": 46049.304684, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8'", + "asctime": "2025-08-22 20:54:44,174" + } + ], + "time_consumption": 0.09798717498779297 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.2728665, + "msecs": 272.0, + "relativeCreated": 46147.67573, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:44,272", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.2727427, + "msecs": 272.0, + "relativeCreated": 46147.551971, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): 8 ()", + "asctime": "2025-08-22 20:54:44,272" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.2728252, + "msecs": 272.0, + "relativeCreated": 46147.634497, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:44,272" + } + ], + "time_consumption": 4.124641418457031e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.color_temp (gfw.dirk.desk_light)", + "10" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.3735416, + "msecs": 373.0, + "relativeCreated": 46248.350947, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.color_temp (gfw.dirk.desk_light) to 10", + "asctime": "2025-08-22 20:54:44,373", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.2730372, + "msecs": 273.0, + "relativeCreated": 46147.846638, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", + "asctime": "2025-08-22 20:54:44,273" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.2741244, + "msecs": 274.0, + "relativeCreated": 46148.933578, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", + "asctime": "2025-08-22 20:54:44,274" + }, + { + "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'10'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.2754147, + "msecs": 275.0, + "relativeCreated": 46150.224043, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'10'", + "asctime": "2025-08-22 20:54:44,275" + } + ], + "time_consumption": 0.09812688827514648 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.373896, + "msecs": 373.0, + "relativeCreated": 46248.705116, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.dirk.desk_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:44,373", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.3737984, + "msecs": 373.0, + "relativeCreated": 46248.607523, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): 10 ()", + "asctime": "2025-08-22 20:54:44,373" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.color_temp (gfw.dirk.desk_light)", + "=", + "10", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.373855, + "msecs": 373.0, + "relativeCreated": 46248.664406, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.color_temp (gfw.dirk.desk_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:44,373" + } + ], + "time_consumption": 4.076957702636719e-05 + } + ], + "time_consumption": 0.8078353404998779, + "time_start": "2025-08-22 20:54:43,566", + "time_finished": "2025-08-22 20:54:44,373" + }, + "ViDevHeating.temp_setp (gfw.dirk.heating_valve) -> HeatingValve.temp_setp (gfw.dirk.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (gfw.dirk.heating_valve) -> HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888884.3741257, + "msecs": 374.0, + "relativeCreated": 46248.934963, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (gfw.dirk.heating_valve) -> HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "asctime": "2025-08-22 20:54:44,374", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888884.474943, + "msecs": 474.0, + "relativeCreated": 46349.752107, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:44,474", + "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", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.3742993, + "msecs": 374.0, + "relativeCreated": 46249.108656, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:44,374" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.3745852, + "msecs": 374.0, + "relativeCreated": 46249.394224, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:44,374" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4173326, + "msecs": 417.0, + "relativeCreated": 46292.141998, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:44,417" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4289968, + "msecs": 428.0, + "relativeCreated": 46303.806104, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:44,428" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4293673, + "msecs": 429.0, + "relativeCreated": 46304.176583, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:44,429" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4296248, + "msecs": 429.0, + "relativeCreated": 46304.434158, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:44,429" + } + ], + "time_consumption": 0.0453181266784668 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.4752526, + "msecs": 475.0, + "relativeCreated": 46350.061924, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:44,475", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.4751642, + "msecs": 475.0, + "relativeCreated": 46349.973392, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:44,475" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.4752142, + "msecs": 475.0, + "relativeCreated": 46350.023537, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:44,475" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.dirk.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.5757556, + "msecs": 575.0, + "relativeCreated": 46450.56482, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.dirk.heating_valve) to 15", + "asctime": "2025-08-22 20:54:44,575", + "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", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.4753547, + "msecs": 475.0, + "relativeCreated": 46350.163735, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:44,475" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4828224, + "msecs": 482.0, + "relativeCreated": 46357.631601, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:44,482" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.4830496, + "msecs": 483.0, + "relativeCreated": 46357.858847, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:44,483" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4833794, + "msecs": 483.0, + "relativeCreated": 46358.188567, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:44,483" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4837146, + "msecs": 483.0, + "relativeCreated": 46358.523743, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:44,483" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.4839418, + "msecs": 483.0, + "relativeCreated": 46358.751159, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:44,483" + } + ], + "time_consumption": 0.09181380271911621 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.5760796, + "msecs": 576.0, + "relativeCreated": 46450.888772, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:44,576", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.5759819, + "msecs": 575.0, + "relativeCreated": 46450.791033, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:44,575" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.5760388, + "msecs": 576.0, + "relativeCreated": 46450.848055, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:44,576" + } + ], + "time_consumption": 4.076957702636719e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.dirk.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.676592, + "msecs": 676.0, + "relativeCreated": 46551.401445, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.dirk.heating_valve) to 20", + "asctime": "2025-08-22 20:54:44,676", + "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", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.5761912, + "msecs": 576.0, + "relativeCreated": 46451.00053, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:44,576" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.5840156, + "msecs": 584.0, + "relativeCreated": 46458.824843, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:44,584" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.5842328, + "msecs": 584.0, + "relativeCreated": 46459.041873, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:44,584" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.5845747, + "msecs": 584.0, + "relativeCreated": 46459.383961, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:44,584" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.5849075, + "msecs": 584.0, + "relativeCreated": 46459.716648, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:44,584" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.5851352, + "msecs": 585.0, + "relativeCreated": 46459.944391, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:44,585" + } + ], + "time_consumption": 0.09145689010620117 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.6769156, + "msecs": 676.0, + "relativeCreated": 46551.72482, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:44,676", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.6768093, + "msecs": 676.0, + "relativeCreated": 46551.618571, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:44,676" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.6768565, + "msecs": 676.0, + "relativeCreated": 46551.665782, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:44,676" + } + ], + "time_consumption": 5.91278076171875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.dirk.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.7774112, + "msecs": 777.0, + "relativeCreated": 46652.220519, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.dirk.heating_valve) to 25", + "asctime": "2025-08-22 20:54:44,777", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.6770086, + "msecs": 677.0, + "relativeCreated": 46551.817882, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:44,677" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.6835525, + "msecs": 683.0, + "relativeCreated": 46558.361809, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:44,683" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.6837573, + "msecs": 683.0, + "relativeCreated": 46558.566468, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:44,683" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.6840494, + "msecs": 684.0, + "relativeCreated": 46558.858533, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:44,684" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.6843438, + "msecs": 684.0, + "relativeCreated": 46559.153144, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:44,684" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.6846495, + "msecs": 684.0, + "relativeCreated": 46559.458622, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:44,684" + } + ], + "time_consumption": 0.09276175498962402 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.777757, + "msecs": 777.0, + "relativeCreated": 46652.566062, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:44,777", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.777627, + "msecs": 777.0, + "relativeCreated": 46652.436131, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:44,777" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.7777174, + "msecs": 777.0, + "relativeCreated": 46652.526419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:44,777" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.dirk.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888884.8783412, + "msecs": 878.0, + "relativeCreated": 46753.150445, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.dirk.heating_valve) to 30", + "asctime": "2025-08-22 20:54:44,878", + "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", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.777863, + "msecs": 777.0, + "relativeCreated": 46652.672212, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:44,777" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.7848492, + "msecs": 784.0, + "relativeCreated": 46659.658421, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:44,784" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.7850592, + "msecs": 785.0, + "relativeCreated": 46659.868664, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:44,785" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.7854016, + "msecs": 785.0, + "relativeCreated": 46660.210736, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:44,785" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.7857454, + "msecs": 785.0, + "relativeCreated": 46660.554647, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:44,785" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.7859836, + "msecs": 785.0, + "relativeCreated": 46660.792728, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:44,785" + } + ], + "time_consumption": 0.09235763549804688 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.8786485, + "msecs": 878.0, + "relativeCreated": 46753.457787, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:44,878", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.8785548, + "msecs": 878.0, + "relativeCreated": 46753.364059, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:44,878" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.8786094, + "msecs": 878.0, + "relativeCreated": 46753.418627, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.dirk.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:44,878" + } + ], + "time_consumption": 3.910064697265625e-05 + } + ], + "time_consumption": 0.5045228004455566, + "time_start": "2025-08-22 20:54:44,374", + "time_finished": "2025-08-22 20:54:44,878" + }, + "ViDevLight.state (gfw.marion.main_light) -> Shelly.relay/0 (gfw.marion.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.marion.main_light) -> Shelly.relay/0 (gfw.marion.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888884.8788788, + "msecs": 878.0, + "relativeCreated": 46753.687894, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.marion.main_light) -> Shelly.relay/0 (gfw.marion.main_light)", + "asctime": "2025-08-22 20:54:44,878", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888884.9795246, + "msecs": 979.0, + "relativeCreated": 46854.333726, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:44,979", + "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.8790395, + "msecs": 879.0, + "relativeCreated": 46753.848777, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:44,879" + } + ], + "time_consumption": 0.10048508644104004 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888884.9799287, + "msecs": 979.0, + "relativeCreated": 46854.738176, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:44,979", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888884.9797964, + "msecs": 979.0, + "relativeCreated": 46854.605739, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:44,979" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888884.9798837, + "msecs": 979.0, + "relativeCreated": 46854.692971, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:44,979" + } + ], + "time_consumption": 4.506111145019531e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.marion.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888885.0803795, + "msecs": 80.0, + "relativeCreated": 46955.188613, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.marion.main_light) to True", + "asctime": "2025-08-22 20:54:45,080", + "moduleLogger": [ + { + "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/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888884.980046, + "msecs": 980.0, + "relativeCreated": 46854.855299, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload true", + "asctime": "2025-08-22 20:54:44,980" + }, + { + "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'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888884.9827468, + "msecs": 982.0, + "relativeCreated": 46857.556067, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'on'", + "asctime": "2025-08-22 20:54:44,982" + }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", @@ -107003,16 +116888,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.1291633, - "msecs": 129.0, - "relativeCreated": 82392.30215, - "thread": 131449228267776, - "threadName": "MainThread", + "created": 1755888884.9829643, + "msecs": 982.0, + "relativeCreated": 46857.773461, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:22,129" + "asctime": "2025-08-22 20:54:44,982" }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", @@ -107030,16 +116915,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.1302905, - "msecs": 130.0, - "relativeCreated": 82393.429312, - "thread": 131449202394816, + "created": 1755888884.9836907, + "msecs": 983.0, + "relativeCreated": 46858.499881, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:22,130" + "asctime": "2025-08-22 20:54:44,983" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", @@ -107057,16 +116942,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.1319983, - "msecs": 131.0, - "relativeCreated": 82395.137089, - "thread": 131449202394816, + "created": 1755888885.0247219, + "msecs": 24.0, + "relativeCreated": 46899.531067, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"on\"}'", - "asctime": "2025-08-19 23:27:22,131" + "asctime": "2025-08-22 20:54:45,024" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", @@ -107084,16 +116969,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.132253, - "msecs": 132.0, - "relativeCreated": 82395.391915, - "thread": 131449202394816, + "created": 1755888885.0249722, + "msecs": 24.0, + "relativeCreated": 46899.781623, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:22,132" + "asctime": "2025-08-22 20:54:45,024" }, { "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", @@ -107111,16 +116996,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.132659, - "msecs": 132.0, - "relativeCreated": 82395.797919, - "thread": 131449202394816, + "created": 1755888885.0253215, + "msecs": 25.0, + "relativeCreated": 46900.130796, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:22,132" + "asctime": "2025-08-22 20:54:45,025" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", @@ -107138,16 +117023,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.1334817, - "msecs": 133.0, - "relativeCreated": 82396.620821, - "thread": 131449202394816, + "created": 1755888885.0257773, + "msecs": 25.0, + "relativeCreated": 46900.586654, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:22,133" + "asctime": "2025-08-22 20:54:45,025" }, { "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", @@ -107165,22 +117050,106 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.174359, - "msecs": 174.0, - "relativeCreated": 82437.498137, - "thread": 131449202394816, + "created": 1755888885.0681872, + "msecs": 68.0, + "relativeCreated": 46942.996338, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:22,174" + "asctime": "2025-08-22 20:54:45,068" }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.069286, + "msecs": 69.0, + "relativeCreated": 46944.095385, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/brightness and payload b'50'", + "asctime": "2025-08-22 20:54:45,069" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.0696418, + "msecs": 69.0, + "relativeCreated": 46944.450835, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/color_temp and payload b'5'", + "asctime": "2025-08-22 20:54:45,069" + } + ], + "time_consumption": 0.01073765754699707 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (gfw.marion.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.080674, + "msecs": 80.0, + "relativeCreated": 46955.483296, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (gfw.marion.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:45,080", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for Tradfri Windowlight (gfw.marion)", + "Value for Shelly.relay/0 (gfw.marion.main_light)", "True", "" ], @@ -107193,22 +117162,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638842.3299534, - "msecs": 329.0, - "relativeCreated": 82593.092597, - "thread": 131449228267776, + "created": 1755888885.08055, + "msecs": 80.0, + "relativeCreated": 46955.359025, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Tradfri Windowlight (gfw.marion)): True ()", - "asctime": "2025-08-19 23:27:22,329" + "message": "Result (Value for Shelly.relay/0 (gfw.marion.main_light)): True ()", + "asctime": "2025-08-22 20:54:45,080" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for Tradfri Windowlight (gfw.marion)", + "Value for Shelly.relay/0 (gfw.marion.main_light)", "=", "True", "" @@ -107222,25 +117191,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638842.3301039, - "msecs": 330.0, - "relativeCreated": 82593.242753, - "thread": 131449228267776, + "created": 1755888885.0806162, + "msecs": 80.0, + "relativeCreated": 46955.42537, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for Tradfri Windowlight (gfw.marion)): result = True ()", - "asctime": "2025-08-19 23:27:22,330" + "message": "Expectation (Value for Shelly.relay/0 (gfw.marion.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:45,080" } ], - "time_consumption": 5.221366882324219e-05 + "time_consumption": 5.7697296142578125e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (gfw.marion)", + "ViDevLight.state (gfw.marion.main_light)", "False" ], "levelname": "DEBUG", @@ -107250,48 +117219,73 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638842.3302684, - "msecs": 330.0, - "relativeCreated": 82593.407453, - "thread": 131449228267776, + "created": 1755888885.1812465, + "msecs": 181.0, + "relativeCreated": 47056.055711, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.marion) to False", - "asctime": "2025-08-19 23:27:22,330", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Tradfri Windowlight (gfw.marion) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638842.5312455, - "msecs": 531.0, - "relativeCreated": 82794.38454, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Tradfri Windowlight (gfw.marion) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:22,531", + "message": "Setting state of ViDevLight.state (gfw.marion.main_light) to False", + "asctime": "2025-08-22 20:54:45,181", "moduleLogger": [ + { + "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/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.0807745, + "msecs": 80.0, + "relativeCreated": 46955.58381, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:45,080" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.0825217, + "msecs": 82.0, + "relativeCreated": 46957.33076, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off'", + "asctime": "2025-08-22 20:54:45,082" + }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", @@ -107308,16 +117302,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.3303792, - "msecs": 330.0, - "relativeCreated": 82593.518343, - "thread": 131449228267776, - "threadName": "MainThread", + "created": 1755888885.0827765, + "msecs": 82.0, + "relativeCreated": 46957.585837, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:27:22,330" + "asctime": "2025-08-22 20:54:45,082" }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", @@ -107335,16 +117329,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.3314269, - "msecs": 331.0, - "relativeCreated": 82594.565822, - "thread": 131449202394816, + "created": 1755888885.0835476, + "msecs": 83.0, + "relativeCreated": 46958.356783, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:27:22,331" + "asctime": "2025-08-22 20:54:45,083" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", @@ -107362,16 +117356,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.3330023, - "msecs": 333.0, - "relativeCreated": 82596.141277, - "thread": 131449202394816, + "created": 1755888885.12464, + "msecs": 124.0, + "relativeCreated": 46999.449191, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"off\"}'", - "asctime": "2025-08-19 23:27:22,333" + "asctime": "2025-08-22 20:54:45,124" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", @@ -107389,16 +117383,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.333247, - "msecs": 333.0, - "relativeCreated": 82596.386092, - "thread": 131449202394816, + "created": 1755888885.1248977, + "msecs": 124.0, + "relativeCreated": 46999.707152, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:22,333" + "asctime": "2025-08-22 20:54:45,124" }, { "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", @@ -107416,16 +117410,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.333618, - "msecs": 333.0, - "relativeCreated": 82596.756986, - "thread": 131449202394816, + "created": 1755888885.1252203, + "msecs": 125.0, + "relativeCreated": 47000.029585, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:22,333" + "asctime": "2025-08-22 20:54:45,125" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", @@ -107443,16 +117437,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.3342316, - "msecs": 334.0, - "relativeCreated": 82597.370456, - "thread": 131449202394816, + "created": 1755888885.1256366, + "msecs": 125.0, + "relativeCreated": 47000.445857, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:22,334" + "asctime": "2025-08-22 20:54:45,125" }, { "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", @@ -107470,22 +117464,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.3762946, - "msecs": 376.0, - "relativeCreated": 82639.43377, - "thread": 131449202394816, + "created": 1755888885.1664987, + "msecs": 166.0, + "relativeCreated": 47041.307802, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:22,376" - }, + "asctime": "2025-08-22 20:54:45,166" + } + ], + "time_consumption": 0.014747858047485352 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (gfw.marion.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.1815581, + "msecs": 181.0, + "relativeCreated": 47056.367338, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (gfw.marion.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:45,181", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for Tradfri Windowlight (gfw.marion)", + "Value for Shelly.relay/0 (gfw.marion.main_light)", "False", "" ], @@ -107498,22 +117522,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638842.5310395, - "msecs": 531.0, - "relativeCreated": 82794.178452, - "thread": 131449228267776, + "created": 1755888885.1814675, + "msecs": 181.0, + "relativeCreated": 47056.276759, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Tradfri Windowlight (gfw.marion)): False ()", - "asctime": "2025-08-19 23:27:22,531" + "message": "Result (Value for Shelly.relay/0 (gfw.marion.main_light)): False ()", + "asctime": "2025-08-22 20:54:45,181" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for Tradfri Windowlight (gfw.marion)", + "Value for Shelly.relay/0 (gfw.marion.main_light)", "=", "False", "" @@ -107527,28 +117551,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638842.5311885, - "msecs": 531.0, - "relativeCreated": 82794.327462, - "thread": 131449228267776, + "created": 1755888885.1815188, + "msecs": 181.0, + "relativeCreated": 47056.328111, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for Tradfri Windowlight (gfw.marion)): result = False ()", - "asctime": "2025-08-19 23:27:22,531" + "message": "Expectation (Value for Shelly.relay/0 (gfw.marion.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:45,181" } ], - "time_consumption": 5.698204040527344e-05 + "time_consumption": 3.933906555175781e-05 } ], - "time_consumption": 0.6035885810852051, - "time_start": "2025-08-19 23:27:21,927", - "time_finished": "2025-08-19 23:27:22,531" + "time_consumption": 0.30267930030822754, + "time_start": "2025-08-22 20:54:44,878", + "time_finished": "2025-08-22 20:54:45,181" }, - "REQ-0361": { + "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (gfw.marion.main_light)": { "name": "__tLogger__", - "msg": "REQ-0361", + "msg": "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (gfw.marion.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -107559,16 +117583,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638842.5315094, - "msecs": 531.0, - "relativeCreated": 82794.648593, - "thread": 131449228267776, + "created": 1755888885.1817923, + "msecs": 181.0, + "relativeCreated": 47056.601532, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0361", - "asctime": "2025-08-19 23:27:22,531", + "message": "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (gfw.marion.main_light)", + "asctime": "2025-08-22 20:54:45,181", "moduleLogger": [], "testcaseLogger": [ { @@ -107586,22 +117610,22 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638842.632267, - "msecs": 632.0, - "relativeCreated": 82895.405999, - "thread": 131449228267776, + "created": 1755888885.2823975, + "msecs": 282.0, + "relativeCreated": 47157.206692, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:22,632", + "asctime": "2025-08-22 20:54:45,282", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state.set", + "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/set", + "videv/gfw/marion/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -107613,45 +117637,19 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.5316687, - "msecs": 531.0, - "relativeCreated": 82794.807748, - "thread": 131449228267776, + "created": 1755888885.1819172, + "msecs": 181.0, + "relativeCreated": 47056.726293, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload false", - "asctime": "2025-08-19 23:27:22,531" - }, - { - "name": "smart_brain.devices.shellies.gfw.floor.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638842.5319073, - "msecs": 531.0, - "relativeCreated": 82795.046235, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:27:22,531" + "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:45,181" } ], - "time_consumption": 0.10035967826843262 + "time_consumption": 0.10048031806945801 }, { "name": "__tLogger__", @@ -107669,16 +117667,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638842.733059, - "msecs": 733.0, - "relativeCreated": 82996.197877, - "thread": 131449228267776, + "created": 1755888885.2827773, + "msecs": 282.0, + "relativeCreated": 47157.58658, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:22,733", + "asctime": "2025-08-22 20:54:45,282", "moduleLogger": [ { "name": "__unittest__", @@ -107697,16 +117695,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638842.7328022, - "msecs": 732.0, - "relativeCreated": 82995.941003, - "thread": 131449228267776, + "created": 1755888885.2826376, + "msecs": 282.0, + "relativeCreated": 47157.446704, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:22,732" + "asctime": "2025-08-22 20:54:45,282" }, { "name": "__unittest__", @@ -107726,25 +117724,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638842.7330034, - "msecs": 733.0, - "relativeCreated": 82996.142272, - "thread": 131449228267776, + "created": 1755888885.2827325, + "msecs": 282.0, + "relativeCreated": 47157.541788, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:22,733" + "asctime": "2025-08-22 20:54:45,282" } ], - "time_consumption": 5.555152893066406e-05 + "time_consumption": 4.482269287109375e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "Shelly.relay/0 (gfw.marion.main_light)", "True" ], "levelname": "DEBUG", @@ -107754,24 +117752,214 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638842.73317, - "msecs": 733.0, - "relativeCreated": 82996.308809, - "thread": 131449228267776, + "created": 1755888885.3832977, + "msecs": 383.0, + "relativeCreated": 47258.106924, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to True", - "asctime": "2025-08-19 23:27:22,733", - "moduleLogger": [], - "time_consumption": 0.0 + "message": "Setting state of Shelly.relay/0 (gfw.marion.main_light) to True", + "asctime": "2025-08-22 20:54:45,383", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.2829275, + "msecs": 282.0, + "relativeCreated": 47157.736752, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:45,282" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.2841554, + "msecs": 284.0, + "relativeCreated": 47158.964739, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:45,284" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.3252654, + "msecs": 325.0, + "relativeCreated": 47200.07463, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:45,325" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.3255424, + "msecs": 325.0, + "relativeCreated": 47200.351623, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:45,325" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.3259416, + "msecs": 325.0, + "relativeCreated": 47200.750834, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:45,325" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.3265884, + "msecs": 326.0, + "relativeCreated": 47201.397658, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:45,326" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.3674712, + "msecs": 367.0, + "relativeCreated": 47242.280226, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:45,367" + } + ], + "time_consumption": 0.01582646369934082 }, { "name": "__tLogger__", - "msg": "Value for Shelly Main Light (gfw.floor) is correct (Content %s and Type is %s).", + "msg": "Value for ViDevLight.state (gfw.marion.main_light) is correct (Content %s and Type is %s).", "args": [ "True", "" @@ -107785,16 +117973,4009 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638842.934203, - "msecs": 934.0, - "relativeCreated": 83197.341873, - "thread": 131449228267776, + "created": 1755888885.3836281, + "msecs": 383.0, + "relativeCreated": 47258.437223, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Value for Shelly Main Light (gfw.floor) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:22,934", + "message": "Value for ViDevLight.state (gfw.marion.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:45,383", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.main_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888885.3835068, + "msecs": 383.0, + "relativeCreated": 47258.315996, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.marion.main_light)): True ()", + "asctime": "2025-08-22 20:54:45,383" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.main_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888885.3835845, + "msecs": 383.0, + "relativeCreated": 47258.393769, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.marion.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:45,383" + } + ], + "time_consumption": 4.363059997558594e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (gfw.marion.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888885.4841495, + "msecs": 484.0, + "relativeCreated": 47358.958769, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (gfw.marion.main_light) to False", + "asctime": "2025-08-22 20:54:45,484", + "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", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.383769, + "msecs": 383.0, + "relativeCreated": 47258.578342, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:45,383" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.3848803, + "msecs": 384.0, + "relativeCreated": 47259.689536, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:45,384" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.425209, + "msecs": 425.0, + "relativeCreated": 47300.018432, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:45,425" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.4254527, + "msecs": 425.0, + "relativeCreated": 47300.261993, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:45,425" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.4258447, + "msecs": 425.0, + "relativeCreated": 47300.653961, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:45,425" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.4265175, + "msecs": 426.0, + "relativeCreated": 47301.326659, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:45,426" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.467204, + "msecs": 467.0, + "relativeCreated": 47342.013379, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:45,467" + } + ], + "time_consumption": 0.016945362091064453 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.marion.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.4844844, + "msecs": 484.0, + "relativeCreated": 47359.29361, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.marion.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:45,484", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.main_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888885.4843707, + "msecs": 484.0, + "relativeCreated": 47359.17986, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.marion.main_light)): False ()", + "asctime": "2025-08-22 20:54:45,484" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.main_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888885.4844427, + "msecs": 484.0, + "relativeCreated": 47359.251838, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.marion.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:45,484" + } + ], + "time_consumption": 4.172325134277344e-05 + } + ], + "time_consumption": 0.302692174911499, + "time_start": "2025-08-22 20:54:45,181", + "time_finished": "2025-08-22 20:54:45,484" + }, + "ViDevLight.state (gfw.marion.window_light) -> Light.state (gfw.marion.window_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.marion.window_light) -> Light.state (gfw.marion.window_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888885.4846983, + "msecs": 484.0, + "relativeCreated": 47359.507483, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.marion.window_light) -> Light.state (gfw.marion.window_light)", + "asctime": "2025-08-22 20:54:45,484", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888885.585316, + "msecs": 585.0, + "relativeCreated": 47460.124987, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:45,585", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.484825, + "msecs": 484.0, + "relativeCreated": 47359.634166, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload false", + "asctime": "2025-08-22 20:54:45,484" + } + ], + "time_consumption": 0.10049104690551758 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.5857203, + "msecs": 585.0, + "relativeCreated": 47460.529429, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:45,585", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888885.5855732, + "msecs": 585.0, + "relativeCreated": 47460.382416, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:45,585" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888885.585638, + "msecs": 585.0, + "relativeCreated": 47460.447419, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:45,585" + } + ], + "time_consumption": 8.225440979003906e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.marion.window_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888885.6862266, + "msecs": 686.0, + "relativeCreated": 47561.035821, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.marion.window_light) to True", + "asctime": "2025-08-22 20:54:45,686", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.5858383, + "msecs": 585.0, + "relativeCreated": 47460.647606, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload true", + "asctime": "2025-08-22 20:54:45,585" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.5883517, + "msecs": 588.0, + "relativeCreated": 47463.160932, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:45,588" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.588633, + "msecs": 588.0, + "relativeCreated": 47463.442402, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:45,588" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.589269, + "msecs": 589.0, + "relativeCreated": 47464.078234, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:45,589" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.6315508, + "msecs": 631.0, + "relativeCreated": 47506.360022, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:45,631" + } + ], + "time_consumption": 0.05467581748962402 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (gfw.marion.window_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.68655, + "msecs": 686.0, + "relativeCreated": 47561.359216, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (gfw.marion.window_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:45,686", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888885.6864371, + "msecs": 686.0, + "relativeCreated": 47561.246243, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (gfw.marion.window_light)): True ()", + "asctime": "2025-08-22 20:54:45,686" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888885.6865103, + "msecs": 686.0, + "relativeCreated": 47561.319651, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (gfw.marion.window_light)): result = True ()", + "asctime": "2025-08-22 20:54:45,686" + } + ], + "time_consumption": 3.9577484130859375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.marion.window_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888885.7870445, + "msecs": 787.0, + "relativeCreated": 47661.853804, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.marion.window_light) to False", + "asctime": "2025-08-22 20:54:45,787", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.6867018, + "msecs": 686.0, + "relativeCreated": 47561.510931, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload false", + "asctime": "2025-08-22 20:54:45,686" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.6888664, + "msecs": 688.0, + "relativeCreated": 47563.675469, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:45,688" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.689131, + "msecs": 689.0, + "relativeCreated": 47563.940272, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:45,689" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.6899033, + "msecs": 689.0, + "relativeCreated": 47564.712473, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:45,689" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.7310178, + "msecs": 731.0, + "relativeCreated": 47605.827009, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:45,731" + } + ], + "time_consumption": 0.05602669715881348 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (gfw.marion.window_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.7873511, + "msecs": 787.0, + "relativeCreated": 47662.160277, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (gfw.marion.window_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:45,787", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888885.7872581, + "msecs": 787.0, + "relativeCreated": 47662.067406, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (gfw.marion.window_light)): False ()", + "asctime": "2025-08-22 20:54:45,787" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888885.7873104, + "msecs": 787.0, + "relativeCreated": 47662.119619, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (gfw.marion.window_light)): result = False ()", + "asctime": "2025-08-22 20:54:45,787" + } + ], + "time_consumption": 4.076957702636719e-05 + } + ], + "time_consumption": 0.30265283584594727, + "time_start": "2025-08-22 20:54:45,484", + "time_finished": "2025-08-22 20:54:45,787" + }, + "Light.state (gfw.marion.window_light) -> ViDevLight.state (gfw.marion.window_light)": { + "name": "__tLogger__", + "msg": "Light.state (gfw.marion.window_light) -> ViDevLight.state (gfw.marion.window_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888885.7875426, + "msecs": 787.0, + "relativeCreated": 47662.351642, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Light.state (gfw.marion.window_light) -> ViDevLight.state (gfw.marion.window_light)", + "asctime": "2025-08-22 20:54:45,787", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888885.8880317, + "msecs": 888.0, + "relativeCreated": 47762.841003, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:45,888", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.787702, + "msecs": 787.0, + "relativeCreated": 47662.511163, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/window_light/state/set and payload false", + "asctime": "2025-08-22 20:54:45,787" + } + ], + "time_consumption": 0.10032963752746582 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.8883739, + "msecs": 888.0, + "relativeCreated": 47763.183097, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:45,888", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888885.8882716, + "msecs": 888.0, + "relativeCreated": 47763.080927, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:45,888" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888885.8883297, + "msecs": 888.0, + "relativeCreated": 47763.139021, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:45,888" + } + ], + "time_consumption": 4.410743713378906e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.state (gfw.marion.window_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888885.988974, + "msecs": 988.0, + "relativeCreated": 47863.783426, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.state (gfw.marion.window_light) to True", + "asctime": "2025-08-22 20:54:45,988", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.8885477, + "msecs": 888.0, + "relativeCreated": 47763.356891, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:45,888" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.8897572, + "msecs": 889.0, + "relativeCreated": 47764.566401, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:45,889" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.8911984, + "msecs": 891.0, + "relativeCreated": 47766.007588, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:45,891" + } + ], + "time_consumption": 0.09777569770812988 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.marion.window_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888885.989306, + "msecs": 989.0, + "relativeCreated": 47864.114996, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.marion.window_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:45,989", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.window_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888885.989202, + "msecs": 989.0, + "relativeCreated": 47864.011123, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.marion.window_light)): True ()", + "asctime": "2025-08-22 20:54:45,989" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.window_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888885.9892604, + "msecs": 989.0, + "relativeCreated": 47864.069829, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.marion.window_light)): result = True ()", + "asctime": "2025-08-22 20:54:45,989" + } + ], + "time_consumption": 4.553794860839844e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Light.state (gfw.marion.window_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888886.0900283, + "msecs": 90.0, + "relativeCreated": 47964.83742, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Light.state (gfw.marion.window_light) to False", + "asctime": "2025-08-22 20:54:46,090", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888885.9894776, + "msecs": 989.0, + "relativeCreated": 47864.28682, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:45,989" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.9906785, + "msecs": 990.0, + "relativeCreated": 47865.487706, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:45,990" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888885.9921348, + "msecs": 992.0, + "relativeCreated": 47866.944087, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:45,992" + } + ], + "time_consumption": 0.09789347648620605 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.marion.window_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.0903585, + "msecs": 90.0, + "relativeCreated": 47965.167674, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.marion.window_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:46,090", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.window_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.090257, + "msecs": 90.0, + "relativeCreated": 47965.066115, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for ViDevLight.state (gfw.marion.window_light)): False ()", + "asctime": "2025-08-22 20:54:46,090" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for ViDevLight.state (gfw.marion.window_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.0903144, + "msecs": 90.0, + "relativeCreated": 47965.123762, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for ViDevLight.state (gfw.marion.window_light)): result = False ()", + "asctime": "2025-08-22 20:54:46,090" + } + ], + "time_consumption": 4.410743713378906e-05 + } + ], + "time_consumption": 0.30281591415405273, + "time_start": "2025-08-22 20:54:45,787", + "time_finished": "2025-08-22 20:54:46,090" + }, + "Shelly.relay/0 (gfw.marion.main_light) -> Light.state (gfw.marion.window_light)": { + "name": "__tLogger__", + "msg": "Shelly.relay/0 (gfw.marion.main_light) -> Light.state (gfw.marion.window_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888886.090587, + "msecs": 90.0, + "relativeCreated": 47965.396237, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Shelly.relay/0 (gfw.marion.main_light) -> Light.state (gfw.marion.window_light)", + "asctime": "2025-08-22 20:54:46,090", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888886.1910203, + "msecs": 191.0, + "relativeCreated": 48065.829557, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:46,191", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.1913967, + "msecs": 191.0, + "relativeCreated": 48066.205836, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:46,191", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.191295, + "msecs": 191.0, + "relativeCreated": 48066.104334, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:46,191" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.1913545, + "msecs": 191.0, + "relativeCreated": 48066.163826, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:46,191" + } + ], + "time_consumption": 4.220008850097656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (gfw.marion.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888886.2919059, + "msecs": 291.0, + "relativeCreated": 48166.715058, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (gfw.marion.main_light) to True", + "asctime": "2025-08-22 20:54:46,291", + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.1915164, + "msecs": 191.0, + "relativeCreated": 48066.325663, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", + "asctime": "2025-08-22 20:54:46,191" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.192485, + "msecs": 192.0, + "relativeCreated": 48067.294433, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", + "asctime": "2025-08-22 20:54:46,192" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.1941283, + "msecs": 194.0, + "relativeCreated": 48068.93759, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"on\"}'", + "asctime": "2025-08-22 20:54:46,194" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.194399, + "msecs": 194.0, + "relativeCreated": 48069.208433, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:46,194" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.1948633, + "msecs": 194.0, + "relativeCreated": 48069.672588, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:46,194" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.1954525, + "msecs": 195.0, + "relativeCreated": 48070.261658, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:46,195" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.2365158, + "msecs": 236.0, + "relativeCreated": 48111.325199, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'true'", + "asctime": "2025-08-22 20:54:46,236" + } + ], + "time_consumption": 0.055390119552612305 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (gfw.marion.window_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.2922382, + "msecs": 292.0, + "relativeCreated": 48167.047451, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (gfw.marion.window_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:46,292", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.2921228, + "msecs": 292.0, + "relativeCreated": 48166.932124, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (gfw.marion.window_light)): True ()", + "asctime": "2025-08-22 20:54:46,292" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.2921999, + "msecs": 292.0, + "relativeCreated": 48167.00922, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (gfw.marion.window_light)): result = True ()", + "asctime": "2025-08-22 20:54:46,292" + } + ], + "time_consumption": 3.838539123535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "Shelly.relay/0 (gfw.marion.main_light)", + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888886.392839, + "msecs": 392.0, + "relativeCreated": 48267.64804, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of Shelly.relay/0 (gfw.marion.main_light) to False", + "asctime": "2025-08-22 20:54:46,392", + "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", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.2923446, + "msecs": 292.0, + "relativeCreated": 48167.153727, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", + "asctime": "2025-08-22 20:54:46,292" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.2933292, + "msecs": 293.0, + "relativeCreated": 48168.13843, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", + "asctime": "2025-08-22 20:54:46,293" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.2948234, + "msecs": 294.0, + "relativeCreated": 48169.632568, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light/set and payload b'{\"state\": \"off\"}'", + "asctime": "2025-08-22 20:54:46,294" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.2950184, + "msecs": 295.0, + "relativeCreated": 48169.827609, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/window_light and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2025-08-22 20:54:46,295" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.2953403, + "msecs": 295.0, + "relativeCreated": 48170.149459, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:46,295" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.window_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/window_light", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.2958703, + "msecs": 295.0, + "relativeCreated": 48170.679483, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/window_light and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2025-08-22 20:54:46,295" + }, + { + "name": "smart_brain.mqtt.videv.gfw.marion.window_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/marion/window_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.3381333, + "msecs": 338.0, + "relativeCreated": 48212.94259, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/window_light/state and payload b'false'", + "asctime": "2025-08-22 20:54:46,338" + } + ], + "time_consumption": 0.05470561981201172 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.state (gfw.marion.window_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.3931735, + "msecs": 393.0, + "relativeCreated": 48267.982618, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.state (gfw.marion.window_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:46,393", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.393059, + "msecs": 393.0, + "relativeCreated": 48267.868277, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for Light.state (gfw.marion.window_light)): False ()", + "asctime": "2025-08-22 20:54:46,393" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for Light.state (gfw.marion.window_light)", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.3931336, + "msecs": 393.0, + "relativeCreated": 48267.942828, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for Light.state (gfw.marion.window_light)): result = False ()", + "asctime": "2025-08-22 20:54:46,393" + } + ], + "time_consumption": 3.981590270996094e-05 + } + ], + "time_consumption": 0.30258655548095703, + "time_start": "2025-08-22 20:54:46,090", + "time_finished": "2025-08-22 20:54:46,393" + }, + "ViDevHeating.temp_setp (gfw.marion.heating_valve) -> HeatingValve.temp_setp (gfw.marion.heating_valve)": { + "name": "__tLogger__", + "msg": "ViDevHeating.temp_setp (gfw.marion.heating_valve) -> HeatingValve.temp_setp (gfw.marion.heating_valve)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888886.3933694, + "msecs": 393.0, + "relativeCreated": 48268.178562, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevHeating.temp_setp (gfw.marion.heating_valve) -> HeatingValve.temp_setp (gfw.marion.heating_valve)", + "asctime": "2025-08-22 20:54:46,393", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888886.4941547, + "msecs": 494.0, + "relativeCreated": 48368.963901, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state 30", + "asctime": "2025-08-22 20:54:46,494", + "moduleLogger": [ + { + "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/marion/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.3935397, + "msecs": 393.0, + "relativeCreated": 48268.348755, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:46,393" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.3938088, + "msecs": 393.0, + "relativeCreated": 48268.618141, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:46,393" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.4040482, + "msecs": 404.0, + "relativeCreated": 48278.857487, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:46,404" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.4044244, + "msecs": 404.0, + "relativeCreated": 48279.233581, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:46,404" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.4047256, + "msecs": 404.0, + "relativeCreated": 48279.534837, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:46,404" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.4449987, + "msecs": 444.0, + "relativeCreated": 48319.807886, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:46,444" + } + ], + "time_consumption": 0.04915595054626465 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(30, 30)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.4945374, + "msecs": 494.0, + "relativeCreated": 48369.34674, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (30, 30) and Type is ).", + "asctime": "2025-08-22 20:54:46,494", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.4944174, + "msecs": 494.0, + "relativeCreated": 48369.226711, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (30, 30) ()", + "asctime": "2025-08-22 20:54:46,494" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(30, 30)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.494498, + "msecs": 494.0, + "relativeCreated": 48369.307406, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (30, 30) ()", + "asctime": "2025-08-22 20:54:46,494" + } + ], + "time_consumption": 3.933906555175781e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.marion.heating_valve)", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888886.594988, + "msecs": 594.0, + "relativeCreated": 48469.797261, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.marion.heating_valve) to 15", + "asctime": "2025-08-22 20:54:46,594", + "moduleLogger": [ + { + "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/marion/heating_valve/user_temperature_setpoint/set", + "15" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.49465, + "msecs": 494.0, + "relativeCreated": 48369.458982, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 15", + "asctime": "2025-08-22 20:54:46,494" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 15}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.5015545, + "msecs": 501.0, + "relativeCreated": 48376.363684, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 15}'", + "asctime": "2025-08-22 20:54:46,501" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.501795, + "msecs": 501.0, + "relativeCreated": 48376.604213, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:46,501" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.5021195, + "msecs": 502.0, + "relativeCreated": 48376.928586, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:46,502" + }, + { + "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'15'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.5024717, + "msecs": 502.0, + "relativeCreated": 48377.281015, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'15'", + "asctime": "2025-08-22 20:54:46,502" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.5027432, + "msecs": 502.0, + "relativeCreated": 48377.55248, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 15, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:46,502" + } + ], + "time_consumption": 0.09224486351013184 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "15", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.595256, + "msecs": 595.0, + "relativeCreated": 48470.065355, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content 15 and Type is ).", + "asctime": "2025-08-22 20:54:46,595", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.5951746, + "msecs": 595.0, + "relativeCreated": 48469.983985, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): 15 ()", + "asctime": "2025-08-22 20:54:46,595" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "=", + "15", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.5952203, + "msecs": 595.0, + "relativeCreated": 48470.029383, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): result = 15 ()", + "asctime": "2025-08-22 20:54:46,595" + } + ], + "time_consumption": 3.5762786865234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.marion.heating_valve)", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888886.6958516, + "msecs": 695.0, + "relativeCreated": 48570.660686, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.marion.heating_valve) to 20", + "asctime": "2025-08-22 20:54:46,695", + "moduleLogger": [ + { + "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/marion/heating_valve/user_temperature_setpoint/set", + "20" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.5953536, + "msecs": 595.0, + "relativeCreated": 48470.16278, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 20", + "asctime": "2025-08-22 20:54:46,595" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.60237, + "msecs": 602.0, + "relativeCreated": 48477.179307, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2025-08-22 20:54:46,602" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.6026065, + "msecs": 602.0, + "relativeCreated": 48477.415911, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:46,602" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.6029453, + "msecs": 602.0, + "relativeCreated": 48477.754606, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:46,602" + }, + { + "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'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.603302, + "msecs": 603.0, + "relativeCreated": 48478.111142, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2025-08-22 20:54:46,603" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.6035569, + "msecs": 603.0, + "relativeCreated": 48478.366068, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:46,603" + } + ], + "time_consumption": 0.09229469299316406 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.6961432, + "msecs": 696.0, + "relativeCreated": 48570.952325, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:46,696", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.6960573, + "msecs": 696.0, + "relativeCreated": 48570.866623, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): 20 ()", + "asctime": "2025-08-22 20:54:46,696" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.696107, + "msecs": 696.0, + "relativeCreated": 48570.916129, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): result = 20 ()", + "asctime": "2025-08-22 20:54:46,696" + } + ], + "time_consumption": 3.62396240234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.marion.heating_valve)", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888886.7967649, + "msecs": 796.0, + "relativeCreated": 48671.574054, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.marion.heating_valve) to 25", + "asctime": "2025-08-22 20:54:46,796", + "moduleLogger": [ + { + "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/marion/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.696239, + "msecs": 696.0, + "relativeCreated": 48571.048464, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2025-08-22 20:54:46,696" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.704119, + "msecs": 704.0, + "relativeCreated": 48578.928169, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2025-08-22 20:54:46,704" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.7043664, + "msecs": 704.0, + "relativeCreated": 48579.175555, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:46,704" + }, + { + "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'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.7047112, + "msecs": 704.0, + "relativeCreated": 48579.520312, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:46,704" + }, + { + "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'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.7050676, + "msecs": 705.0, + "relativeCreated": 48579.876776, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2025-08-22 20:54:46,705" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.7053125, + "msecs": 705.0, + "relativeCreated": 48580.121801, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:46,705" + } + ], + "time_consumption": 0.09145236015319824 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.7970524, + "msecs": 797.0, + "relativeCreated": 48671.861719, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content 25 and Type is ).", + "asctime": "2025-08-22 20:54:46,797", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.7969706, + "msecs": 796.0, + "relativeCreated": 48671.779844, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): 25 ()", + "asctime": "2025-08-22 20:54:46,796" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.7970178, + "msecs": 797.0, + "relativeCreated": 48671.826975, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): result = 25 ()", + "asctime": "2025-08-22 20:54:46,797" + } + ], + "time_consumption": 3.457069396972656e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevHeating.temp_setp (gfw.marion.heating_valve)", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888886.897522, + "msecs": 897.0, + "relativeCreated": 48772.331235, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevHeating.temp_setp (gfw.marion.heating_valve) to 30", + "asctime": "2025-08-22 20:54:46,897", + "moduleLogger": [ + { + "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/marion/heating_valve/user_temperature_setpoint/set", + "30" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.797148, + "msecs": 797.0, + "relativeCreated": 48671.95714, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 30", + "asctime": "2025-08-22 20:54:46,797" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.804471, + "msecs": 804.0, + "relativeCreated": 48679.280265, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2025-08-22 20:54:46,804" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.8047163, + "msecs": 804.0, + "relativeCreated": 48679.525641, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic zigbee_gfw/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2025-08-22 20:54:46,804" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.8050644, + "msecs": 805.0, + "relativeCreated": 48679.873798, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:46,805" + }, + { + "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'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.8053982, + "msecs": 805.0, + "relativeCreated": 48680.207553, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'30'", + "asctime": "2025-08-22 20:54:46,805" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.marion.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888886.8056843, + "msecs": 805.0, + "relativeCreated": 48680.493361, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2025-08-22 20:54:46,805" + } + ], + "time_consumption": 0.09183764457702637 + }, + { + "name": "__tLogger__", + "msg": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content %s and Type is %s).", + "args": [ + "30", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.8978653, + "msecs": 897.0, + "relativeCreated": 48772.674452, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for HeatingValve.temp_setp (gfw.marion.heating_valve) is correct (Content 30 and Type is ).", + "asctime": "2025-08-22 20:54:46,897", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.897752, + "msecs": 897.0, + "relativeCreated": 48772.561299, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): 30 ()", + "asctime": "2025-08-22 20:54:46,897" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Value for HeatingValve.temp_setp (gfw.marion.heating_valve)", + "=", + "30", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.8978267, + "msecs": 897.0, + "relativeCreated": 48772.635765, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Value for HeatingValve.temp_setp (gfw.marion.heating_valve)): result = 30 ()", + "asctime": "2025-08-22 20:54:46,897" + } + ], + "time_consumption": 3.8623809814453125e-05 + } + ], + "time_consumption": 0.5044958591461182, + "time_start": "2025-08-22 20:54:46,393", + "time_finished": "2025-08-22 20:54:46,897" + }, + "ViDevLight.state (gfw.floor.main_light) -> Shelly.relay/0 (gfw.floor.main_light)": { + "name": "__tLogger__", + "msg": "ViDevLight.state (gfw.floor.main_light) -> Shelly.relay/0 (gfw.floor.main_light)", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/report/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 329, + "funcName": "testCase", + "created": 1755888886.8980665, + "msecs": 898.0, + "relativeCreated": 48772.87579, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "ViDevLight.state (gfw.floor.main_light) -> Shelly.relay/0 (gfw.floor.main_light)", + "asctime": "2025-08-22 20:54:46,898", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Prepare: Setting devices to last state %s", + "args": [ + "False" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 19, + "funcName": "device_follow", + "created": 1755888886.998773, + "msecs": 998.0, + "relativeCreated": 48873.582301, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Prepare: Setting devices to last state False", + "asctime": "2025-08-22 20:54:46,998", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1755888886.8982193, + "msecs": 898.0, + "relativeCreated": 48773.028539, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:46,898" + } + ], + "time_consumption": 0.10055375099182129 + }, + { + "name": "__tLogger__", + "msg": "Start state (master, slave) is correct (Content %s and Type is %s).", + "args": [ + "(False, False)", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888886.999144, + "msecs": 999.0, + "relativeCreated": 48873.953385, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", + "asctime": "2025-08-22 20:54:46,999", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Start state (master, slave)", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1755888886.9990132, + "msecs": 999.0, + "relativeCreated": 48873.822237, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Result (Start state (master, slave)): (False, False) ()", + "asctime": "2025-08-22 20:54:46,999" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Start state (master, slave)", + "=", + "(False, False)", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1755888886.9990954, + "msecs": 999.0, + "relativeCreated": 48873.904675, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Expectation (Start state (master, slave)): result = (False, False) ()", + "asctime": "2025-08-22 20:54:46,999" + } + ], + "time_consumption": 4.863739013671875e-05 + }, + { + "name": "__tLogger__", + "msg": "Setting state of %s to %s", + "args": [ + "ViDevLight.state (gfw.floor.main_light)", + "True" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/common_testcases.py", + "filename": "common_testcases.py", + "module": "common_testcases", + "exc_text": null, + "stack_info": null, + "lineno": 28, + "funcName": "device_follow", + "created": 1755888887.0996442, + "msecs": 99.0, + "relativeCreated": 48974.453443, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Setting state of ViDevLight.state (gfw.floor.main_light) to True", + "asctime": "2025-08-22 20:54:47,099", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state.set", @@ -107812,16 +121993,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.73328, - "msecs": 733.0, - "relativeCreated": 82996.419088, - "thread": 131449228267776, + "created": 1755888886.9992652, + "msecs": 999.0, + "relativeCreated": 48874.074547, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload true", - "asctime": "2025-08-19 23:27:22,733" + "asctime": "2025-08-22 20:54:46,999" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0.command", @@ -107839,16 +122020,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.735515, - "msecs": 735.0, - "relativeCreated": 82998.654075, - "thread": 131449202394816, + "created": 1755888887.001714, + "msecs": 1.0, + "relativeCreated": 48876.523073, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:27:22,735" + "asctime": "2025-08-22 20:54:47,001" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -107866,16 +122047,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.7357185, - "msecs": 735.0, - "relativeCreated": 82998.857285, - "thread": 131449202394816, + "created": 1755888887.0019336, + "msecs": 1.0, + "relativeCreated": 48876.742808, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:22,735" + "asctime": "2025-08-22 20:54:47,001" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -107893,16 +122074,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.7363203, - "msecs": 736.0, - "relativeCreated": 82999.459306, - "thread": 131449202394816, + "created": 1755888887.0025659, + "msecs": 2.0, + "relativeCreated": 48877.375127, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:22,736" + "asctime": "2025-08-22 20:54:47,002" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.get", @@ -107920,16 +122101,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.778138, - "msecs": 778.0, - "relativeCreated": 83041.276917, - "thread": 131449202394816, + "created": 1755888887.0439112, + "msecs": 43.0, + "relativeCreated": 48918.720306, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-19 23:27:22,778" + "asctime": "2025-08-22 20:54:47,043" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -107947,16 +122128,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.778299, - "msecs": 778.0, - "relativeCreated": 83041.438203, - "thread": 131449202394816, + "created": 1755888887.0441713, + "msecs": 44.0, + "relativeCreated": 48918.980592, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:22,778" + "asctime": "2025-08-22 20:54:47,044" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.get", @@ -107974,16 +122155,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.7785609, - "msecs": 778.0, - "relativeCreated": 83041.699753, - "thread": 131449202394816, + "created": 1755888887.0445943, + "msecs": 44.0, + "relativeCreated": 48919.403359, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-19 23:27:22,778" + "asctime": "2025-08-22 20:54:47,044" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -108001,16 +122182,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.7786665, - "msecs": 778.0, - "relativeCreated": 83041.805403, - "thread": 131449202394816, + "created": 1755888887.0447354, + "msecs": 44.0, + "relativeCreated": 48919.544618, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:22,778" + "asctime": "2025-08-22 20:54:47,044" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", @@ -108028,16 +122209,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.7789648, - "msecs": 778.0, - "relativeCreated": 83042.103709, - "thread": 131449202394816, + "created": 1755888887.045072, + "msecs": 45.0, + "relativeCreated": 48919.881384, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:22,778" + "asctime": "2025-08-22 20:54:47,045" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -108055,16 +122236,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.7791991, - "msecs": 779.0, - "relativeCreated": 83042.338111, - "thread": 131449202394816, + "created": 1755888887.0454314, + "msecs": 45.0, + "relativeCreated": 48920.24059, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:22,779" + "asctime": "2025-08-22 20:54:47,045" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -108082,16 +122263,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.779401, - "msecs": 779.0, - "relativeCreated": 83042.540055, - "thread": 131449202394816, + "created": 1755888887.0456362, + "msecs": 45.0, + "relativeCreated": 48920.445239, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:22,779" + "asctime": "2025-08-22 20:54:47,045" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -108109,49 +122290,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.8213558, - "msecs": 821.0, - "relativeCreated": 83084.494856, - "thread": 131449202394816, + "created": 1755888887.0864868, + "msecs": 86.0, + "relativeCreated": 48961.29603, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", - "asctime": "2025-08-19 23:27:22,821" - }, - { - "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638842.8616748, - "msecs": 861.0, - "relativeCreated": 83124.813721, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", - "asctime": "2025-08-19 23:27:22,861" - }, + "asctime": "2025-08-22 20:54:47,086" + } + ], + "time_consumption": 0.013157367706298828 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888887.100185, + "msecs": 100.0, + "relativeCreated": 48974.994032, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (gfw.floor.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:47,100", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for Shelly Main Light (gfw.floor)", + "Value for Shelly.relay/0 (gfw.floor.main_light)", "True", "" ], @@ -108164,22 +122348,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638842.9340067, - "msecs": 934.0, - "relativeCreated": 83197.145771, - "thread": 131449228267776, + "created": 1755888887.100006, + "msecs": 100.0, + "relativeCreated": 48974.815334, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Shelly Main Light (gfw.floor)): True ()", - "asctime": "2025-08-19 23:27:22,934" + "message": "Result (Value for Shelly.relay/0 (gfw.floor.main_light)): True ()", + "asctime": "2025-08-22 20:54:47,100" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for Shelly Main Light (gfw.floor)", + "Value for Shelly.relay/0 (gfw.floor.main_light)", "=", "True", "" @@ -108193,25 +122377,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638842.93415, - "msecs": 934.0, - "relativeCreated": 83197.288885, - "thread": 131449228267776, + "created": 1755888887.1001172, + "msecs": 100.0, + "relativeCreated": 48974.926606, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for Shelly Main Light (gfw.floor)): result = True ()", - "asctime": "2025-08-19 23:27:22,934" + "message": "Expectation (Value for Shelly.relay/0 (gfw.floor.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:47,100" } ], - "time_consumption": 5.2928924560546875e-05 + "time_consumption": 6.771087646484375e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.state (gfw.floor.main_light)", "False" ], "levelname": "DEBUG", @@ -108221,47 +122405,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638842.9343174, - "msecs": 934.0, - "relativeCreated": 83197.456193, - "thread": 131449228267776, + "created": 1755888887.2007709, + "msecs": 200.0, + "relativeCreated": 49075.580149, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to False", - "asctime": "2025-08-19 23:27:22,934", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (gfw.floor) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638843.1353765, - "msecs": 135.0, - "relativeCreated": 83398.515299, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (gfw.floor) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:23,135", + "message": "Setting state of ViDevLight.state (gfw.floor.main_light) to False", + "asctime": "2025-08-22 20:54:47,200", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state.set", @@ -108279,16 +122434,43 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.9344509, - "msecs": 934.0, - "relativeCreated": 83197.589879, - "thread": 131449228267776, + "created": 1755888887.100356, + "msecs": 100.0, + "relativeCreated": 48975.165447, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload false", - "asctime": "2025-08-19 23:27:22,934" + "asctime": "2025-08-22 20:54:47,100" + }, + { + "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/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888887.1013882, + "msecs": 101.0, + "relativeCreated": 48976.197484, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", + "asctime": "2025-08-22 20:54:47,101" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0.command", @@ -108306,16 +122488,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.936991, - "msecs": 936.0, - "relativeCreated": 83200.129982, - "thread": 131449202394816, + "created": 1755888887.1424649, + "msecs": 142.0, + "relativeCreated": 49017.273888, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:27:22,936" + "asctime": "2025-08-22 20:54:47,142" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -108333,16 +122515,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638842.9372122, - "msecs": 937.0, - "relativeCreated": 83200.351079, - "thread": 131449202394816, + "created": 1755888887.1426928, + "msecs": 142.0, + "relativeCreated": 49017.502219, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:27:22,937" + "asctime": "2025-08-22 20:54:47,142" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -108360,16 +122542,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.9380429, - "msecs": 938.0, - "relativeCreated": 83201.182008, - "thread": 131449202394816, + "created": 1755888887.1434786, + "msecs": 143.0, + "relativeCreated": 49018.287809, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:27:22,938" + "asctime": "2025-08-22 20:54:47,143" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", @@ -108387,22 +122569,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638842.9783335, - "msecs": 978.0, - "relativeCreated": 83241.472326, - "thread": 131449202394816, + "created": 1755888887.1846213, + "msecs": 184.0, + "relativeCreated": 49059.430616, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:22,978" - }, + "asctime": "2025-08-22 20:54:47,184" + } + ], + "time_consumption": 0.016149520874023438 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888887.201202, + "msecs": 201.0, + "relativeCreated": 49076.01121, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (gfw.floor.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:47,201", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for Shelly Main Light (gfw.floor)", + "Value for Shelly.relay/0 (gfw.floor.main_light)", "False", "" ], @@ -108415,22 +122627,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638843.1351755, - "msecs": 135.0, - "relativeCreated": 83398.314306, - "thread": 131449228267776, + "created": 1755888887.2010598, + "msecs": 201.0, + "relativeCreated": 49075.869103, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Shelly Main Light (gfw.floor)): False ()", - "asctime": "2025-08-19 23:27:23,135" + "message": "Result (Value for Shelly.relay/0 (gfw.floor.main_light)): False ()", + "asctime": "2025-08-22 20:54:47,201" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for Shelly Main Light (gfw.floor)", + "Value for Shelly.relay/0 (gfw.floor.main_light)", "=", "False", "" @@ -108444,28 +122656,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638843.1353204, - "msecs": 135.0, - "relativeCreated": 83398.459353, - "thread": 131449228267776, + "created": 1755888887.201134, + "msecs": 201.0, + "relativeCreated": 49075.943288, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for Shelly Main Light (gfw.floor)): result = False ()", - "asctime": "2025-08-19 23:27:23,135" + "message": "Expectation (Value for Shelly.relay/0 (gfw.floor.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:47,201" } ], - "time_consumption": 5.602836608886719e-05 + "time_consumption": 6.794929504394531e-05 } ], - "time_consumption": 0.6038670539855957, - "time_start": "2025-08-19 23:27:22,531", - "time_finished": "2025-08-19 23:27:23,135" + "time_consumption": 0.30313539505004883, + "time_start": "2025-08-22 20:54:46,898", + "time_finished": "2025-08-22 20:54:47,201" }, - "REQ-0362": { + "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (gfw.floor.main_light)": { "name": "__tLogger__", - "msg": "REQ-0362", + "msg": "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (gfw.floor.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -108476,16 +122688,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638843.1356366, - "msecs": 135.0, - "relativeCreated": 83398.775456, - "thread": 131449228267776, + "created": 1755888887.2014627, + "msecs": 201.0, + "relativeCreated": 49076.272136, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0362", - "asctime": "2025-08-19 23:27:23,135", + "message": "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (gfw.floor.main_light)", + "asctime": "2025-08-22 20:54:47,201", "moduleLogger": [], "testcaseLogger": [ { @@ -108503,22 +122715,22 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638843.2364707, - "msecs": 236.0, - "relativeCreated": 83499.609859, - "thread": 131449228267776, + "created": 1755888887.3022382, + "msecs": 302.0, + "relativeCreated": 49177.047387, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:23,236", + "asctime": "2025-08-22 20:54:47,302", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.relay.0.set", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/floor/main_light/relay/0/set", + "videv/gfw/floor/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -108530,19 +122742,19 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.1359696, - "msecs": 135.0, - "relativeCreated": 83399.108621, - "thread": 131449228267776, + "created": 1755888887.2017107, + "msecs": 201.0, + "relativeCreated": 49076.519819, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:27:23,135" + "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:47,201" } ], - "time_consumption": 0.10050106048583984 + "time_consumption": 0.10052752494812012 }, { "name": "__tLogger__", @@ -108560,16 +122772,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638843.3372328, - "msecs": 337.0, - "relativeCreated": 83600.371808, - "thread": 131449228267776, + "created": 1755888887.3025582, + "msecs": 302.0, + "relativeCreated": 49177.367376, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:23,337", + "asctime": "2025-08-22 20:54:47,302", "moduleLogger": [ { "name": "__unittest__", @@ -108588,16 +122800,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638843.3370028, - "msecs": 337.0, - "relativeCreated": 83600.141821, - "thread": 131449228267776, + "created": 1755888887.3024635, + "msecs": 302.0, + "relativeCreated": 49177.27285, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:23,337" + "asctime": "2025-08-22 20:54:47,302" }, { "name": "__unittest__", @@ -108617,25 +122829,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638843.3371732, - "msecs": 337.0, - "relativeCreated": 83600.312237, - "thread": 131449228267776, + "created": 1755888887.3025181, + "msecs": 302.0, + "relativeCreated": 49177.327223, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:23,337" + "asctime": "2025-08-22 20:54:47,302" } ], - "time_consumption": 5.9604644775390625e-05 + "time_consumption": 4.00543212890625e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (gfw.floor)", + "Shelly.relay/0 (gfw.floor.main_light)", "True" ], "levelname": "DEBUG", @@ -108645,47 +122857,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638843.3373406, - "msecs": 337.0, - "relativeCreated": 83600.479753, - "thread": 131449228267776, + "created": 1755888887.403123, + "msecs": 403.0, + "relativeCreated": 49277.932081, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.floor) to True", - "asctime": "2025-08-19 23:27:23,337", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638843.5384662, - "msecs": 538.0, - "relativeCreated": 83801.605388, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:23,538", + "message": "Setting state of Shelly.relay/0 (gfw.floor.main_light) to True", + "asctime": "2025-08-22 20:54:47,403", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -108703,16 +122886,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.3374546, - "msecs": 337.0, - "relativeCreated": 83600.593647, - "thread": 131449228267776, + "created": 1755888887.3026993, + "msecs": 302.0, + "relativeCreated": 49177.508549, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:23,337" + "asctime": "2025-08-22 20:54:47,302" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -108730,16 +122913,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.3385916, - "msecs": 338.0, - "relativeCreated": 83601.730568, - "thread": 131449202394816, + "created": 1755888887.3038383, + "msecs": 303.0, + "relativeCreated": 49178.64735, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:23,338" + "asctime": "2025-08-22 20:54:47,303" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.get", @@ -108757,16 +122940,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.3402689, - "msecs": 340.0, - "relativeCreated": 83603.407709, - "thread": 131449202394816, + "created": 1755888887.345463, + "msecs": 345.0, + "relativeCreated": 49220.272379, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-19 23:27:23,340" + "asctime": "2025-08-22 20:54:47,345" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -108784,16 +122967,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.3404489, - "msecs": 340.0, - "relativeCreated": 83603.587896, - "thread": 131449202394816, + "created": 1755888887.3457057, + "msecs": 345.0, + "relativeCreated": 49220.514998, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:23,340" + "asctime": "2025-08-22 20:54:47,345" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.get", @@ -108811,16 +122994,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.3407638, - "msecs": 340.0, - "relativeCreated": 83603.902798, - "thread": 131449202394816, + "created": 1755888887.3459976, + "msecs": 345.0, + "relativeCreated": 49220.80684, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-19 23:27:23,340" + "asctime": "2025-08-22 20:54:47,345" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -108838,16 +123021,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.3409061, - "msecs": 340.0, - "relativeCreated": 83604.045262, - "thread": 131449202394816, + "created": 1755888887.346096, + "msecs": 346.0, + "relativeCreated": 49220.905388, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:23,340" + "asctime": "2025-08-22 20:54:47,346" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", @@ -108865,16 +123048,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.341243, - "msecs": 341.0, - "relativeCreated": 83604.382123, - "thread": 131449202394816, + "created": 1755888887.346389, + "msecs": 346.0, + "relativeCreated": 49221.198226, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:23,341" + "asctime": "2025-08-22 20:54:47,346" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -108892,16 +123075,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.341519, - "msecs": 341.0, - "relativeCreated": 83604.658059, - "thread": 131449202394816, + "created": 1755888887.3468375, + "msecs": 346.0, + "relativeCreated": 49221.646691, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:23,341" + "asctime": "2025-08-22 20:54:47,346" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -108919,22 +123102,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.341756, - "msecs": 341.0, - "relativeCreated": 83604.895143, - "thread": 131449202394816, + "created": 1755888887.3470948, + "msecs": 347.0, + "relativeCreated": 49221.903978, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:23,341" - }, + "asctime": "2025-08-22 20:54:47,347" + } + ], + "time_consumption": 0.056028127670288086 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888887.403458, + "msecs": 403.0, + "relativeCreated": 49278.267402, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.floor.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:47,403", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.state (gfw.floor.main_light)", "True", "" ], @@ -108947,22 +123160,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638843.5382497, - "msecs": 538.0, - "relativeCreated": 83801.388622, - "thread": 131449228267776, + "created": 1755888887.4033425, + "msecs": 403.0, + "relativeCreated": 49278.151876, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): True ()", - "asctime": "2025-08-19 23:27:23,538" + "message": "Result (Value for ViDevLight.state (gfw.floor.main_light)): True ()", + "asctime": "2025-08-22 20:54:47,403" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.state (gfw.floor.main_light)", "=", "True", "" @@ -108976,25 +123189,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638843.538406, - "msecs": 538.0, - "relativeCreated": 83801.544788, - "thread": 131449228267776, + "created": 1755888887.4033952, + "msecs": 403.0, + "relativeCreated": 49278.204293, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = True ()", - "asctime": "2025-08-19 23:27:23,538" + "message": "Expectation (Value for ViDevLight.state (gfw.floor.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:47,403" } ], - "time_consumption": 6.031990051269531e-05 + "time_consumption": 6.29425048828125e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (gfw.floor)", + "Shelly.relay/0 (gfw.floor.main_light)", "False" ], "levelname": "DEBUG", @@ -109004,47 +123217,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638843.53859, - "msecs": 538.0, - "relativeCreated": 83801.728866, - "thread": 131449228267776, + "created": 1755888887.5041456, + "msecs": 504.0, + "relativeCreated": 49378.954939, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Shelly Main Light (gfw.floor) to False", - "asctime": "2025-08-19 23:27:23,538", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638843.739785, - "msecs": 739.0, - "relativeCreated": 84002.924015, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:23,739", + "message": "Setting state of Shelly.relay/0 (gfw.floor.main_light) to False", + "asctime": "2025-08-22 20:54:47,504", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -109062,16 +123246,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.5387092, - "msecs": 538.0, - "relativeCreated": 83801.848263, - "thread": 131449228267776, + "created": 1755888887.4035687, + "msecs": 403.0, + "relativeCreated": 49278.377957, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:27:23,538" + "asctime": "2025-08-22 20:54:47,403" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -109089,16 +123273,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.539834, - "msecs": 539.0, - "relativeCreated": 83802.973141, - "thread": 131449202394816, + "created": 1755888887.404625, + "msecs": 404.0, + "relativeCreated": 49279.434187, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:27:23,539" + "asctime": "2025-08-22 20:54:47,404" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", @@ -109116,22 +123300,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.5411367, - "msecs": 541.0, - "relativeCreated": 83804.275551, - "thread": 131449202394816, + "created": 1755888887.405907, + "msecs": 405.0, + "relativeCreated": 49280.716059, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:23,541" - }, + "asctime": "2025-08-22 20:54:47,405" + } + ], + "time_consumption": 0.09823870658874512 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888887.504473, + "msecs": 504.0, + "relativeCreated": 49379.282389, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (gfw.floor.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:47,504", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.state (gfw.floor.main_light)", "False", "" ], @@ -109144,22 +123358,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638843.7395568, - "msecs": 739.0, - "relativeCreated": 84002.695843, - "thread": 131449228267776, + "created": 1755888887.5043728, + "msecs": 504.0, + "relativeCreated": 49379.181863, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): False ()", - "asctime": "2025-08-19 23:27:23,739" + "message": "Result (Value for ViDevLight.state (gfw.floor.main_light)): False ()", + "asctime": "2025-08-22 20:54:47,504" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.state (gfw.floor.main_light)", "=", "False", "" @@ -109173,28 +123387,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638843.739705, - "msecs": 739.0, - "relativeCreated": 84002.844141, - "thread": 131449228267776, + "created": 1755888887.5044305, + "msecs": 504.0, + "relativeCreated": 49379.239938, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = False ()", - "asctime": "2025-08-19 23:27:23,739" + "message": "Expectation (Value for ViDevLight.state (gfw.floor.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:47,504" } ], - "time_consumption": 7.987022399902344e-05 + "time_consumption": 4.2438507080078125e-05 } ], - "time_consumption": 0.6041483879089355, - "time_start": "2025-08-19 23:27:23,135", - "time_finished": "2025-08-19 23:27:23,739" + "time_consumption": 0.3030102252960205, + "time_start": "2025-08-22 20:54:47,201", + "time_finished": "2025-08-22 20:54:47,504" }, - "REQ-0363": { + "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (gfw.floor.main_light)": { "name": "__tLogger__", - "msg": "REQ-0363", + "msg": "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (gfw.floor.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -109205,16 +123419,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638843.7400796, - "msecs": 740.0, - "relativeCreated": 84003.218624, - "thread": 131449228267776, + "created": 1755888887.5047677, + "msecs": 504.0, + "relativeCreated": 49379.576933, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0363", - "asctime": "2025-08-19 23:27:23,740", + "message": "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (gfw.floor.main_light)", + "asctime": "2025-08-22 20:54:47,504", "moduleLogger": [], "testcaseLogger": [ { @@ -109230,16 +123444,16 @@ "stack_info": null, "lineno": 13, "funcName": "device_follow", - "created": 1755638843.8406258, - "msecs": 840.0, - "relativeCreated": 84103.764795, - "thread": 131449228267776, + "created": 1755888887.6053233, + "msecs": 605.0, + "relativeCreated": 49480.132597, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:23,840", + "asctime": "2025-08-22 20:54:47,605", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -109257,16 +123471,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.7402296, - "msecs": 740.0, - "relativeCreated": 84003.368761, - "thread": 131449228267776, + "created": 1755888887.5048912, + "msecs": 504.0, + "relativeCreated": 49379.700435, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:23,740" + "asctime": "2025-08-22 20:54:47,504" }, { "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", @@ -109284,16 +123498,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.741352, - "msecs": 741.0, - "relativeCreated": 84004.491153, - "thread": 131449202394816, + "created": 1755888887.5058818, + "msecs": 505.0, + "relativeCreated": 49380.691006, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:23,741" + "asctime": "2025-08-22 20:54:47,505" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.get", @@ -109311,16 +123525,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.7429347, - "msecs": 742.0, - "relativeCreated": 84006.073773, - "thread": 131449202394816, + "created": 1755888887.507501, + "msecs": 507.0, + "relativeCreated": 49382.309972, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-19 23:27:23,742" + "asctime": "2025-08-22 20:54:47,507" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -109338,16 +123552,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.7430885, - "msecs": 743.0, - "relativeCreated": 84006.227361, - "thread": 131449202394816, + "created": 1755888887.5077317, + "msecs": 507.0, + "relativeCreated": 49382.541053, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:23,743" + "asctime": "2025-08-22 20:54:47,507" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.get", @@ -109365,16 +123579,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.7433898, - "msecs": 743.0, - "relativeCreated": 84006.528863, - "thread": 131449202394816, + "created": 1755888887.5080504, + "msecs": 508.0, + "relativeCreated": 49382.859778, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-19 23:27:23,743" + "asctime": "2025-08-22 20:54:47,508" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -109392,16 +123606,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.7435, - "msecs": 743.0, - "relativeCreated": 84006.639093, - "thread": 131449202394816, + "created": 1755888887.508176, + "msecs": 508.0, + "relativeCreated": 49382.985421, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:23,743" + "asctime": "2025-08-22 20:54:47,508" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", @@ -109419,16 +123633,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.7438323, - "msecs": 743.0, - "relativeCreated": 84006.971272, - "thread": 131449202394816, + "created": 1755888887.5085268, + "msecs": 508.0, + "relativeCreated": 49383.336123, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:23,743" + "asctime": "2025-08-22 20:54:47,508" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -109446,16 +123660,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.7441025, - "msecs": 744.0, - "relativeCreated": 84007.24135, - "thread": 131449202394816, + "created": 1755888887.5088422, + "msecs": 508.0, + "relativeCreated": 49383.65147, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:23,744" + "asctime": "2025-08-22 20:54:47,508" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -109473,19 +123687,19 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.7443163, - "msecs": 744.0, - "relativeCreated": 84007.455364, - "thread": 131449202394816, + "created": 1755888887.509071, + "msecs": 509.0, + "relativeCreated": 49383.880385, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:23,744" + "asctime": "2025-08-22 20:54:47,509" } ], - "time_consumption": 0.09630942344665527 + "time_consumption": 0.0962522029876709 }, { "name": "__tLogger__", @@ -109502,16 +123716,16 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638843.9418178, - "msecs": 941.0, - "relativeCreated": 84204.956794, - "thread": 131449228267776, + "created": 1755888887.7062542, + "msecs": 706.0, + "relativeCreated": 49581.06357, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:27:23,941", + "asctime": "2025-08-22 20:54:47,706", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -109529,16 +123743,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.8409348, - "msecs": 840.0, - "relativeCreated": 84104.073573, - "thread": 131449228267776, + "created": 1755888887.6055787, + "msecs": 605.0, + "relativeCreated": 49480.38805, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:23,840" + "asctime": "2025-08-22 20:54:47,605" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -109556,16 +123770,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.8412488, - "msecs": 841.0, - "relativeCreated": 84104.387875, - "thread": 131449228267776, + "created": 1755888887.6059005, + "msecs": 605.0, + "relativeCreated": 49480.709661, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:23,841" + "asctime": "2025-08-22 20:54:47,605" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -109583,16 +123797,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638843.8414001, - "msecs": 841.0, - "relativeCreated": 84104.538983, - "thread": 131449228267776, + "created": 1755888887.606018, + "msecs": 606.0, + "relativeCreated": 49480.82732, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:23,841" + "asctime": "2025-08-22 20:54:47,606" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -109610,16 +123824,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.8439329, - "msecs": 843.0, - "relativeCreated": 84107.071935, - "thread": 131449202394816, + "created": 1755888887.608223, + "msecs": 608.0, + "relativeCreated": 49483.032337, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:23,843" + "asctime": "2025-08-22 20:54:47,608" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -109637,16 +123851,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.8443117, - "msecs": 844.0, - "relativeCreated": 84107.450884, - "thread": 131449202394816, + "created": 1755888887.6085656, + "msecs": 608.0, + "relativeCreated": 49483.37473, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:23,844" + "asctime": "2025-08-22 20:54:47,608" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -109664,16 +123878,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.8843021, - "msecs": 884.0, - "relativeCreated": 84147.441061, - "thread": 131449202394816, + "created": 1755888887.649267, + "msecs": 649.0, + "relativeCreated": 49524.076221, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:23,884" + "asctime": "2025-08-22 20:54:47,649" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -109691,16 +123905,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.8845394, - "msecs": 884.0, - "relativeCreated": 84147.678459, - "thread": 131449202394816, + "created": 1755888887.649599, + "msecs": 649.0, + "relativeCreated": 49524.408207, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:23,884" + "asctime": "2025-08-22 20:54:47,649" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -109718,19 +123932,19 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638843.8865807, - "msecs": 886.0, - "relativeCreated": 84149.719818, - "thread": 131449202394816, + "created": 1755888887.650802, + "msecs": 650.0, + "relativeCreated": 49525.611263, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:23,886" + "asctime": "2025-08-22 20:54:47,650" } ], - "time_consumption": 0.0552370548248291 + "time_consumption": 0.05545234680175781 }, { "name": "__tLogger__", @@ -109748,16 +123962,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638844.0423958, - "msecs": 42.0, - "relativeCreated": 84305.534834, - "thread": 131449228267776, + "created": 1755888887.706641, + "msecs": 706.0, + "relativeCreated": 49581.450126, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:27:24,042", + "asctime": "2025-08-22 20:54:47,706", "moduleLogger": [ { "name": "__unittest__", @@ -109776,16 +123990,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638844.0422316, - "msecs": 42.0, - "relativeCreated": 84305.370558, - "thread": 131449228267776, + "created": 1755888887.706518, + "msecs": 706.0, + "relativeCreated": 49581.327316, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:27:24,042" + "asctime": "2025-08-22 20:54:47,706" }, { "name": "__unittest__", @@ -109805,25 +124019,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638844.0423484, - "msecs": 42.0, - "relativeCreated": 84305.487412, - "thread": 131449228267776, + "created": 1755888887.7065735, + "msecs": 706.0, + "relativeCreated": 49581.38271, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:27:24,042" + "asctime": "2025-08-22 20:54:47,706" } ], - "time_consumption": 4.744529724121094e-05 + "time_consumption": 6.747245788574219e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.brightness (gfw.floor.main_light)", "0" ], "levelname": "DEBUG", @@ -109833,47 +124047,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638844.042492, - "msecs": 42.0, - "relativeCreated": 84305.630922, - "thread": 131449228267776, + "created": 1755888887.8071551, + "msecs": 807.0, + "relativeCreated": 49681.964412, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 0", - "asctime": "2025-08-19 23:27:24,042", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638844.2436483, - "msecs": 243.0, - "relativeCreated": 84506.787309, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:24,243", + "message": "Setting state of ViDevLight.brightness (gfw.floor.main_light) to 0", + "asctime": "2025-08-22 20:54:47,807", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -109891,16 +124076,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.0426033, - "msecs": 42.0, - "relativeCreated": 84305.742316, - "thread": 131449228267776, + "created": 1755888887.706776, + "msecs": 706.0, + "relativeCreated": 49581.58502, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 0", - "asctime": "2025-08-19 23:27:24,042" + "asctime": "2025-08-22 20:54:47,706" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -109918,16 +124103,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.0448816, - "msecs": 44.0, - "relativeCreated": 84308.02075, - "thread": 131449202394816, + "created": 1755888887.709185, + "msecs": 709.0, + "relativeCreated": 49583.994012, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:27:24,044" + "asctime": "2025-08-22 20:54:47,709" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -109945,16 +124130,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.0451272, - "msecs": 45.0, - "relativeCreated": 84308.266071, - "thread": 131449202394816, + "created": 1755888887.7093973, + "msecs": 709.0, + "relativeCreated": 49584.206501, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,045" + "asctime": "2025-08-22 20:54:47,709" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -109972,16 +124157,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.0454328, - "msecs": 45.0, - "relativeCreated": 84308.571828, - "thread": 131449202394816, + "created": 1755888887.7097416, + "msecs": 709.0, + "relativeCreated": 49584.550916, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"brightness\": 1}'", - "asctime": "2025-08-19 23:27:24,045" + "asctime": "2025-08-22 20:54:47,709" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -109999,16 +124184,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.0455532, - "msecs": 45.0, - "relativeCreated": 84308.692032, - "thread": 131449202394816, + "created": 1755888887.7098694, + "msecs": 709.0, + "relativeCreated": 49584.678493, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,045" + "asctime": "2025-08-22 20:54:47,709" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -110026,16 +124211,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.0460236, - "msecs": 46.0, - "relativeCreated": 84309.162616, - "thread": 131449202394816, + "created": 1755888887.7106013, + "msecs": 710.0, + "relativeCreated": 49585.410531, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,046" + "asctime": "2025-08-22 20:54:47,710" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -110053,16 +124238,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.0462503, - "msecs": 46.0, - "relativeCreated": 84309.389366, - "thread": 131449202394816, + "created": 1755888887.7109005, + "msecs": 710.0, + "relativeCreated": 49585.709614, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,046" + "asctime": "2025-08-22 20:54:47,710" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -110080,22 +124265,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.0882835, - "msecs": 88.0, - "relativeCreated": 84351.422639, - "thread": 131449202394816, + "created": 1755888887.7522523, + "msecs": 752.0, + "relativeCreated": 49627.061657, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:27:24,088" - }, + "asctime": "2025-08-22 20:54:47,752" + } + ], + "time_consumption": 0.05490279197692871 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888887.8074975, + "msecs": 807.0, + "relativeCreated": 49682.306732, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.floor.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:47,807", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "0", "" ], @@ -110108,22 +124323,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638844.2434564, - "msecs": 243.0, - "relativeCreated": 84506.595208, - "thread": 131449228267776, + "created": 1755888887.8074067, + "msecs": 807.0, + "relativeCreated": 49682.215849, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 0 ()", - "asctime": "2025-08-19 23:27:24,243" + "message": "Result (Value for Light.brightness (gfw.floor.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:47,807" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "=", "0", "" @@ -110137,25 +124352,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638844.2435951, - "msecs": 243.0, - "relativeCreated": 84506.734049, - "thread": 131449228267776, + "created": 1755888887.8074598, + "msecs": 807.0, + "relativeCreated": 49682.268955, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 0 ()", - "asctime": "2025-08-19 23:27:24,243" + "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:47,807" } ], - "time_consumption": 5.316734313964844e-05 + "time_consumption": 3.7670135498046875e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.brightness (gfw.floor.main_light)", "20" ], "levelname": "DEBUG", @@ -110165,47 +124380,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638844.2437592, - "msecs": 243.0, - "relativeCreated": 84506.898113, - "thread": 131449228267776, + "created": 1755888887.9080462, + "msecs": 908.0, + "relativeCreated": 49782.855681, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 20", - "asctime": "2025-08-19 23:27:24,243", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638844.444942, - "msecs": 444.0, - "relativeCreated": 84708.081177, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:27:24,444", + "message": "Setting state of ViDevLight.brightness (gfw.floor.main_light) to 20", + "asctime": "2025-08-22 20:54:47,908", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -110223,16 +124409,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.243869, - "msecs": 243.0, - "relativeCreated": 84507.008308, - "thread": 131449228267776, + "created": 1755888887.8075962, + "msecs": 807.0, + "relativeCreated": 49682.405594, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 20", - "asctime": "2025-08-19 23:27:24,243" + "asctime": "2025-08-22 20:54:47,807" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -110250,16 +124436,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.2465708, - "msecs": 246.0, - "relativeCreated": 84509.709869, - "thread": 131449202394816, + "created": 1755888887.8100674, + "msecs": 810.0, + "relativeCreated": 49684.876779, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:27:24,246" + "asctime": "2025-08-22 20:54:47,810" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -110277,16 +124463,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.2468293, - "msecs": 246.0, - "relativeCreated": 84509.968341, - "thread": 131449202394816, + "created": 1755888887.8102903, + "msecs": 810.0, + "relativeCreated": 49685.099689, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,246" + "asctime": "2025-08-22 20:54:47,810" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -110304,16 +124490,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.2472181, - "msecs": 247.0, - "relativeCreated": 84510.357135, - "thread": 131449202394816, + "created": 1755888887.810625, + "msecs": 810.0, + "relativeCreated": 49685.434201, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"brightness\": 52}'", - "asctime": "2025-08-19 23:27:24,247" + "asctime": "2025-08-22 20:54:47,810" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -110331,16 +124517,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.2473714, - "msecs": 247.0, - "relativeCreated": 84510.510495, - "thread": 131449202394816, + "created": 1755888887.8107708, + "msecs": 810.0, + "relativeCreated": 49685.579909, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,247" + "asctime": "2025-08-22 20:54:47,810" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -110358,16 +124544,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.2478702, - "msecs": 247.0, - "relativeCreated": 84511.009142, - "thread": 131449202394816, + "created": 1755888887.8114147, + "msecs": 811.0, + "relativeCreated": 49686.224048, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,247" + "asctime": "2025-08-22 20:54:47,811" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -110385,16 +124571,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.2481449, - "msecs": 248.0, - "relativeCreated": 84511.283796, - "thread": 131449202394816, + "created": 1755888887.8117228, + "msecs": 811.0, + "relativeCreated": 49686.531909, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,248" + "asctime": "2025-08-22 20:54:47,811" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -110412,22 +124598,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.289105, - "msecs": 289.0, - "relativeCreated": 84552.244025, - "thread": 131449202394816, + "created": 1755888887.8535395, + "msecs": 853.0, + "relativeCreated": 49728.348868, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:27:24,289" - }, + "asctime": "2025-08-22 20:54:47,853" + } + ], + "time_consumption": 0.054506778717041016 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888887.9083927, + "msecs": 908.0, + "relativeCreated": 49783.20186, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.floor.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:47,908", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "20", "" ], @@ -110440,22 +124656,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638844.4446766, - "msecs": 444.0, - "relativeCreated": 84707.815601, - "thread": 131449228267776, + "created": 1755888887.9083018, + "msecs": 908.0, + "relativeCreated": 49783.111038, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 20 ()", - "asctime": "2025-08-19 23:27:24,444" + "message": "Result (Value for Light.brightness (gfw.floor.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:47,908" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "=", "20", "" @@ -110469,25 +124685,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638844.4448512, - "msecs": 444.0, - "relativeCreated": 84707.990303, - "thread": 131449228267776, + "created": 1755888887.908355, + "msecs": 908.0, + "relativeCreated": 49783.164312, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 20 ()", - "asctime": "2025-08-19 23:27:24,444" + "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:47,908" } ], - "time_consumption": 9.083747863769531e-05 + "time_consumption": 3.7670135498046875e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.brightness (gfw.floor.main_light)", "40" ], "levelname": "DEBUG", @@ -110497,47 +124713,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638844.445065, - "msecs": 445.0, - "relativeCreated": 84708.204064, - "thread": 131449228267776, + "created": 1755888888.0088594, + "msecs": 8.0, + "relativeCreated": 49883.668661, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 40", - "asctime": "2025-08-19 23:27:24,445", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638844.6463118, - "msecs": 646.0, - "relativeCreated": 84909.450789, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:27:24,646", + "message": "Setting state of ViDevLight.brightness (gfw.floor.main_light) to 40", + "asctime": "2025-08-22 20:54:48,008", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -110555,16 +124742,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.445185, - "msecs": 445.0, - "relativeCreated": 84708.324083, - "thread": 131449228267776, + "created": 1755888887.9085026, + "msecs": 908.0, + "relativeCreated": 49783.311665, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 40", - "asctime": "2025-08-19 23:27:24,445" + "asctime": "2025-08-22 20:54:47,908" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -110582,16 +124769,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.4481852, - "msecs": 448.0, - "relativeCreated": 84711.324011, - "thread": 131449202394816, + "created": 1755888887.9111257, + "msecs": 911.0, + "relativeCreated": 49785.93504, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:27:24,448" + "asctime": "2025-08-22 20:54:47,911" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -110609,16 +124796,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.4483995, - "msecs": 448.0, - "relativeCreated": 84711.538524, - "thread": 131449202394816, + "created": 1755888887.9113255, + "msecs": 911.0, + "relativeCreated": 49786.134717, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,448" + "asctime": "2025-08-22 20:54:47,911" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -110636,16 +124823,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.4487622, - "msecs": 448.0, - "relativeCreated": 84711.901119, - "thread": 131449202394816, + "created": 1755888887.9116685, + "msecs": 911.0, + "relativeCreated": 49786.477838, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"brightness\": 102}'", - "asctime": "2025-08-19 23:27:24,448" + "asctime": "2025-08-22 20:54:47,911" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -110663,16 +124850,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.4489162, - "msecs": 448.0, - "relativeCreated": 84712.055148, - "thread": 131449202394816, + "created": 1755888887.911805, + "msecs": 911.0, + "relativeCreated": 49786.614264, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,448" + "asctime": "2025-08-22 20:54:47,911" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -110690,16 +124877,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.4493806, - "msecs": 449.0, - "relativeCreated": 84712.51972, - "thread": 131449202394816, + "created": 1755888887.9124508, + "msecs": 912.0, + "relativeCreated": 49787.260143, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,449" + "asctime": "2025-08-22 20:54:47,912" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -110717,16 +124904,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.4496236, - "msecs": 449.0, - "relativeCreated": 84712.76251, - "thread": 131449202394816, + "created": 1755888887.912749, + "msecs": 912.0, + "relativeCreated": 49787.558375, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,449" + "asctime": "2025-08-22 20:54:47,912" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -110744,22 +124931,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.4908676, - "msecs": 490.0, - "relativeCreated": 84754.006685, - "thread": 131449202394816, + "created": 1755888887.9546864, + "msecs": 954.0, + "relativeCreated": 49829.495729, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:27:24,490" - }, + "asctime": "2025-08-22 20:54:47,954" + } + ], + "time_consumption": 0.05417299270629883 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.0092432, + "msecs": 9.0, + "relativeCreated": 49884.052316, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.floor.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:48,009", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "40", "" ], @@ -110772,22 +124989,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638844.6460998, - "msecs": 646.0, - "relativeCreated": 84909.238741, - "thread": 131449228267776, + "created": 1755888888.0091228, + "msecs": 9.0, + "relativeCreated": 49883.932158, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 40 ()", - "asctime": "2025-08-19 23:27:24,646" + "message": "Result (Value for Light.brightness (gfw.floor.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:48,009" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "=", "40", "" @@ -110801,25 +125018,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638844.6462317, - "msecs": 646.0, - "relativeCreated": 84909.370614, - "thread": 131449228267776, + "created": 1755888888.0091984, + "msecs": 9.0, + "relativeCreated": 49884.007587, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 40 ()", - "asctime": "2025-08-19 23:27:24,646" + "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:48,009" } ], - "time_consumption": 8.0108642578125e-05 + "time_consumption": 4.482269287109375e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.brightness (gfw.floor.main_light)", "60" ], "levelname": "DEBUG", @@ -110829,47 +125046,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638844.646424, - "msecs": 646.0, - "relativeCreated": 84909.563004, - "thread": 131449228267776, + "created": 1755888888.1097128, + "msecs": 109.0, + "relativeCreated": 49984.522101, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 60", - "asctime": "2025-08-19 23:27:24,646", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638844.847617, - "msecs": 847.0, - "relativeCreated": 85110.75604, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:27:24,847", + "message": "Setting state of ViDevLight.brightness (gfw.floor.main_light) to 60", + "asctime": "2025-08-22 20:54:48,109", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -110887,16 +125075,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.6465313, - "msecs": 646.0, - "relativeCreated": 84909.670448, - "thread": 131449228267776, + "created": 1755888888.0093496, + "msecs": 9.0, + "relativeCreated": 49884.15885, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 60", - "asctime": "2025-08-19 23:27:24,646" + "asctime": "2025-08-22 20:54:48,009" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -110914,16 +125102,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.649381, - "msecs": 649.0, - "relativeCreated": 84912.519995, - "thread": 131449202394816, + "created": 1755888888.0118115, + "msecs": 11.0, + "relativeCreated": 49886.620825, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:27:24,649" + "asctime": "2025-08-22 20:54:48,011" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -110941,16 +125129,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.6496205, - "msecs": 649.0, - "relativeCreated": 84912.759561, - "thread": 131449202394816, + "created": 1755888888.0120125, + "msecs": 12.0, + "relativeCreated": 49886.821687, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,649" + "asctime": "2025-08-22 20:54:48,012" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -110968,16 +125156,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.650015, - "msecs": 650.0, - "relativeCreated": 84913.154354, - "thread": 131449202394816, + "created": 1755888888.012355, + "msecs": 12.0, + "relativeCreated": 49887.164328, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"brightness\": 153}'", - "asctime": "2025-08-19 23:27:24,650" + "asctime": "2025-08-22 20:54:48,012" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -110995,16 +125183,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.6501627, - "msecs": 650.0, - "relativeCreated": 84913.301811, - "thread": 131449202394816, + "created": 1755888888.0124776, + "msecs": 12.0, + "relativeCreated": 49887.287036, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,650" + "asctime": "2025-08-22 20:54:48,012" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -111022,16 +125210,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.6506736, - "msecs": 650.0, - "relativeCreated": 84913.812768, - "thread": 131449202394816, + "created": 1755888888.0130575, + "msecs": 13.0, + "relativeCreated": 49887.866854, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,650" + "asctime": "2025-08-22 20:54:48,013" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -111049,16 +125237,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.6509287, - "msecs": 650.0, - "relativeCreated": 84914.067742, - "thread": 131449202394816, + "created": 1755888888.0133417, + "msecs": 13.0, + "relativeCreated": 49888.150834, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,650" + "asctime": "2025-08-22 20:54:48,013" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -111076,22 +125264,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.6914604, - "msecs": 691.0, - "relativeCreated": 84954.599233, - "thread": 131449202394816, + "created": 1755888888.0544286, + "msecs": 54.0, + "relativeCreated": 49929.237842, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:27:24,691" - }, + "asctime": "2025-08-22 20:54:48,054" + } + ], + "time_consumption": 0.05528426170349121 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.1100998, + "msecs": 110.0, + "relativeCreated": 49984.90904, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.floor.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:48,110", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "60", "" ], @@ -111104,22 +125322,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638844.8474162, - "msecs": 847.0, - "relativeCreated": 85110.555068, - "thread": 131449228267776, + "created": 1755888888.1099803, + "msecs": 109.0, + "relativeCreated": 49984.789682, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 60 ()", - "asctime": "2025-08-19 23:27:24,847" + "message": "Result (Value for Light.brightness (gfw.floor.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:48,109" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "=", "60", "" @@ -111133,25 +125351,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638844.8475602, - "msecs": 847.0, - "relativeCreated": 85110.699246, - "thread": 131449228267776, + "created": 1755888888.1100345, + "msecs": 110.0, + "relativeCreated": 49984.843597, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 60 ()", - "asctime": "2025-08-19 23:27:24,847" + "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:48,110" } ], - "time_consumption": 5.6743621826171875e-05 + "time_consumption": 6.532669067382812e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.brightness (gfw.floor.main_light)", "80" ], "levelname": "DEBUG", @@ -111161,47 +125379,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638844.8477397, - "msecs": 847.0, - "relativeCreated": 85110.878774, - "thread": 131449228267776, + "created": 1755888888.210566, + "msecs": 210.0, + "relativeCreated": 50085.375496, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 80", - "asctime": "2025-08-19 23:27:24,847", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638845.0490484, - "msecs": 49.0, - "relativeCreated": 85312.18737, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:27:25,049", + "message": "Setting state of ViDevLight.brightness (gfw.floor.main_light) to 80", + "asctime": "2025-08-22 20:54:48,210", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -111219,16 +125408,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.8478887, - "msecs": 847.0, - "relativeCreated": 85111.027617, - "thread": 131449228267776, + "created": 1755888888.1102078, + "msecs": 110.0, + "relativeCreated": 49985.016962, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 80", - "asctime": "2025-08-19 23:27:24,847" + "asctime": "2025-08-22 20:54:48,110" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -111246,16 +125435,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.8505547, - "msecs": 850.0, - "relativeCreated": 85113.693529, - "thread": 131449202394816, + "created": 1755888888.112784, + "msecs": 112.0, + "relativeCreated": 49987.593093, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:27:24,850" + "asctime": "2025-08-22 20:54:48,112" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -111273,16 +125462,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.8508313, - "msecs": 850.0, - "relativeCreated": 85113.970485, - "thread": 131449202394816, + "created": 1755888888.1130033, + "msecs": 113.0, + "relativeCreated": 49987.812553, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,850" + "asctime": "2025-08-22 20:54:48,113" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -111300,16 +125489,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.8512363, - "msecs": 851.0, - "relativeCreated": 85114.375476, - "thread": 131449202394816, + "created": 1755888888.113333, + "msecs": 113.0, + "relativeCreated": 49988.142192, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"brightness\": 203}'", - "asctime": "2025-08-19 23:27:24,851" + "asctime": "2025-08-22 20:54:48,113" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -111327,16 +125516,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638844.851388, - "msecs": 851.0, - "relativeCreated": 85114.527027, - "thread": 131449202394816, + "created": 1755888888.113455, + "msecs": 113.0, + "relativeCreated": 49988.264415, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:24,851" + "asctime": "2025-08-22 20:54:48,113" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -111354,16 +125543,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.8519444, - "msecs": 851.0, - "relativeCreated": 85115.083441, - "thread": 131449202394816, + "created": 1755888888.1142557, + "msecs": 114.0, + "relativeCreated": 49989.064826, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,851" + "asctime": "2025-08-22 20:54:48,114" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -111381,16 +125570,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.8521903, - "msecs": 852.0, - "relativeCreated": 85115.329319, - "thread": 131449202394816, + "created": 1755888888.11454, + "msecs": 114.0, + "relativeCreated": 49989.3493, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:24,852" + "asctime": "2025-08-22 20:54:48,114" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -111408,22 +125597,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638844.8931043, - "msecs": 893.0, - "relativeCreated": 85156.243433, - "thread": 131449202394816, + "created": 1755888888.155403, + "msecs": 155.0, + "relativeCreated": 50030.212257, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:27:24,893" - }, + "asctime": "2025-08-22 20:54:48,155" + } + ], + "time_consumption": 0.05516314506530762 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.2109644, + "msecs": 210.0, + "relativeCreated": 50085.773737, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.floor.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:48,210", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "80", "" ], @@ -111436,22 +125655,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638845.048824, - "msecs": 48.0, - "relativeCreated": 85311.963019, - "thread": 131449228267776, + "created": 1755888888.2108688, + "msecs": 210.0, + "relativeCreated": 50085.677923, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 80 ()", - "asctime": "2025-08-19 23:27:25,048" + "message": "Result (Value for Light.brightness (gfw.floor.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:48,210" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "=", "80", "" @@ -111465,25 +125684,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638845.0489936, - "msecs": 48.0, - "relativeCreated": 85312.132637, - "thread": 131449228267776, + "created": 1755888888.2109244, + "msecs": 210.0, + "relativeCreated": 50085.733408, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 80 ()", - "asctime": "2025-08-19 23:27:25,048" + "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:48,210" } ], - "time_consumption": 5.4836273193359375e-05 + "time_consumption": 4.00543212890625e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.brightness (gfw.floor.main_light)", "100" ], "levelname": "DEBUG", @@ -111493,47 +125712,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638845.0491624, - "msecs": 49.0, - "relativeCreated": 85312.301411, - "thread": 131449228267776, + "created": 1755888888.3114522, + "msecs": 311.0, + "relativeCreated": 50186.261405, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 100", - "asctime": "2025-08-19 23:27:25,049", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638845.250343, - "msecs": 250.0, - "relativeCreated": 85513.482167, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:27:25,250", + "message": "Setting state of ViDevLight.brightness (gfw.floor.main_light) to 100", + "asctime": "2025-08-22 20:54:48,311", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -111551,16 +125741,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.049301, - "msecs": 49.0, - "relativeCreated": 85312.439965, - "thread": 131449228267776, + "created": 1755888888.2110763, + "msecs": 211.0, + "relativeCreated": 50085.885576, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:25,049" + "asctime": "2025-08-22 20:54:48,211" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -111578,16 +125768,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.051878, - "msecs": 51.0, - "relativeCreated": 85315.016907, - "thread": 131449202394816, + "created": 1755888888.213703, + "msecs": 213.0, + "relativeCreated": 50088.512144, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:25,051" + "asctime": "2025-08-22 20:54:48,213" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -111605,16 +125795,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.0521257, - "msecs": 52.0, - "relativeCreated": 85315.264647, - "thread": 131449202394816, + "created": 1755888888.2139196, + "msecs": 213.0, + "relativeCreated": 50088.729012, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,052" + "asctime": "2025-08-22 20:54:48,213" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -111632,16 +125822,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.0524666, - "msecs": 52.0, - "relativeCreated": 85315.605677, - "thread": 131449202394816, + "created": 1755888888.2142692, + "msecs": 214.0, + "relativeCreated": 50089.078437, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"brightness\": 254}'", - "asctime": "2025-08-19 23:27:25,052" + "asctime": "2025-08-22 20:54:48,214" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -111659,16 +125849,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.052619, - "msecs": 52.0, - "relativeCreated": 85315.757973, - "thread": 131449202394816, + "created": 1755888888.2143927, + "msecs": 214.0, + "relativeCreated": 50089.20177, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,052" + "asctime": "2025-08-22 20:54:48,214" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -111686,16 +125876,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.0531569, - "msecs": 53.0, - "relativeCreated": 85316.29583, - "thread": 131449202394816, + "created": 1755888888.2150202, + "msecs": 215.0, + "relativeCreated": 50089.829577, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,053" + "asctime": "2025-08-22 20:54:48,215" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -111713,16 +125903,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.053406, - "msecs": 53.0, - "relativeCreated": 85316.544847, - "thread": 131449202394816, + "created": 1755888888.2153013, + "msecs": 215.0, + "relativeCreated": 50090.110724, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,053" + "asctime": "2025-08-22 20:54:48,215" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -111740,22 +125930,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.0952272, - "msecs": 95.0, - "relativeCreated": 85358.366135, - "thread": 131449202394816, + "created": 1755888888.2562392, + "msecs": 256.0, + "relativeCreated": 50131.048335, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:25,095" - }, + "asctime": "2025-08-22 20:54:48,256" + } + ], + "time_consumption": 0.055212974548339844 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.3118365, + "msecs": 311.0, + "relativeCreated": 50186.645589, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.brightness (gfw.floor.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:48,311", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "100", "" ], @@ -111768,22 +125988,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638845.2501502, - "msecs": 250.0, - "relativeCreated": 85513.28925, - "thread": 131449228267776, + "created": 1755888888.311741, + "msecs": 311.0, + "relativeCreated": 50186.550457, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 100 ()", - "asctime": "2025-08-19 23:27:25,250" + "message": "Result (Value for Light.brightness (gfw.floor.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:48,311" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.brightness (gfw.floor.main_light)", "=", "100", "" @@ -111797,28 +126017,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638845.2502909, - "msecs": 250.0, - "relativeCreated": 85513.429868, - "thread": 131449228267776, + "created": 1755888888.311796, + "msecs": 311.0, + "relativeCreated": 50186.605235, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 100 ()", - "asctime": "2025-08-19 23:27:25,250" + "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:48,311" } ], - "time_consumption": 5.221366882324219e-05 + "time_consumption": 4.0531158447265625e-05 } ], - "time_consumption": 1.510263442993164, - "time_start": "2025-08-19 23:27:23,740", - "time_finished": "2025-08-19 23:27:25,250" + "time_consumption": 0.8070688247680664, + "time_start": "2025-08-22 20:54:47,504", + "time_finished": "2025-08-22 20:54:48,311" }, - "REQ-0364": { + "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (gfw.floor.main_light)": { "name": "__tLogger__", - "msg": "REQ-0364", + "msg": "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (gfw.floor.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -111829,16 +126049,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638845.2506452, - "msecs": 250.0, - "relativeCreated": 85513.784233, - "thread": 131449228267776, + "created": 1755888888.3120954, + "msecs": 312.0, + "relativeCreated": 50186.904807, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0364", - "asctime": "2025-08-19 23:27:25,250", + "message": "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (gfw.floor.main_light)", + "asctime": "2025-08-22 20:54:48,312", "moduleLogger": [], "testcaseLogger": [ { @@ -111854,16 +126074,16 @@ "stack_info": null, "lineno": 13, "funcName": "device_follow", - "created": 1755638845.3509414, - "msecs": 350.0, - "relativeCreated": 85614.08034, - "thread": 131449228267776, + "created": 1755888888.4124758, + "msecs": 412.0, + "relativeCreated": 50287.28523, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:25,350", + "asctime": "2025-08-22 20:54:48,412", "moduleLogger": [], "time_consumption": 0.0 }, @@ -111882,16 +126102,16 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638845.4518154, - "msecs": 451.0, - "relativeCreated": 85714.954354, - "thread": 131449228267776, + "created": 1755888888.5133557, + "msecs": 513.0, + "relativeCreated": 50388.164945, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-19 23:27:25,451", + "asctime": "2025-08-22 20:54:48,513", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", @@ -111909,19 +126129,19 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.3512821, - "msecs": 351.0, - "relativeCreated": 85614.421215, - "thread": 131449228267776, + "created": 1755888888.4128509, + "msecs": 412.0, + "relativeCreated": 50287.660145, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 100", - "asctime": "2025-08-19 23:27:25,351" + "asctime": "2025-08-22 20:54:48,412" } ], - "time_consumption": 0.10053324699401855 + "time_consumption": 0.10050487518310547 }, { "name": "__tLogger__", @@ -111939,16 +126159,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638845.5525806, - "msecs": 552.0, - "relativeCreated": 85815.719519, - "thread": 131449228267776, + "created": 1755888888.513785, + "msecs": 513.0, + "relativeCreated": 50388.594028, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (100, 100) and Type is ).", - "asctime": "2025-08-19 23:27:25,552", + "asctime": "2025-08-22 20:54:48,513", "moduleLogger": [ { "name": "__unittest__", @@ -111967,16 +126187,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638845.5523596, - "msecs": 552.0, - "relativeCreated": 85815.498583, - "thread": 131449228267776, + "created": 1755888888.5136192, + "msecs": 513.0, + "relativeCreated": 50388.428499, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-19 23:27:25,552" + "asctime": "2025-08-22 20:54:48,513" }, { "name": "__unittest__", @@ -111996,25 +126216,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638845.5525017, - "msecs": 552.0, - "relativeCreated": 85815.640875, - "thread": 131449228267776, + "created": 1755888888.5137177, + "msecs": 513.0, + "relativeCreated": 50388.526884, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (100, 100) ()", - "asctime": "2025-08-19 23:27:25,552" + "asctime": "2025-08-22 20:54:48,513" } ], - "time_consumption": 7.891654968261719e-05 + "time_consumption": 6.723403930664062e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.brightness (gfw.floor.main_light)", "0" ], "levelname": "DEBUG", @@ -112024,47 +126244,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638845.552737, - "msecs": 552.0, - "relativeCreated": 85815.87598, - "thread": 131449228267776, + "created": 1755888888.6145504, + "msecs": 614.0, + "relativeCreated": 50489.359424, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 0", - "asctime": "2025-08-19 23:27:25,552", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638845.7541444, - "msecs": 754.0, - "relativeCreated": 86017.283582, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:25,754", + "message": "Setting state of Light.brightness (gfw.floor.main_light) to 0", + "asctime": "2025-08-22 20:54:48,614", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112082,16 +126273,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.552959, - "msecs": 552.0, - "relativeCreated": 85816.097897, - "thread": 131449228267776, + "created": 1755888888.5139692, + "msecs": 513.0, + "relativeCreated": 50388.778262, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,552" + "asctime": "2025-08-22 20:54:48,513" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112109,16 +126300,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.553222, - "msecs": 553.0, - "relativeCreated": 85816.360983, - "thread": 131449228267776, + "created": 1755888888.5142262, + "msecs": 514.0, + "relativeCreated": 50389.035505, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,553" + "asctime": "2025-08-22 20:54:48,514" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112136,16 +126327,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.5540123, - "msecs": 554.0, - "relativeCreated": 85817.151313, - "thread": 131449202394816, + "created": 1755888888.515099, + "msecs": 515.0, + "relativeCreated": 50389.90834, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,554" + "asctime": "2025-08-22 20:54:48,515" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112163,16 +126354,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.554367, - "msecs": 554.0, - "relativeCreated": 85817.505994, - "thread": 131449202394816, + "created": 1755888888.51544, + "msecs": 515.0, + "relativeCreated": 50390.249168, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 1.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,554" + "asctime": "2025-08-22 20:54:48,515" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -112190,22 +126381,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.5557709, - "msecs": 555.0, - "relativeCreated": 85818.909884, - "thread": 131449202394816, + "created": 1755888888.5170503, + "msecs": 517.0, + "relativeCreated": 50391.859639, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'0'", - "asctime": "2025-08-19 23:27:25,555" - }, + "asctime": "2025-08-22 20:54:48,517" + } + ], + "time_consumption": 0.09750008583068848 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.6148856, + "msecs": 614.0, + "relativeCreated": 50489.694988, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:48,614", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "0", "" ], @@ -112218,22 +126439,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638845.7539446, - "msecs": 753.0, - "relativeCreated": 86017.08362, - "thread": 131449228267776, + "created": 1755888888.6147916, + "msecs": 614.0, + "relativeCreated": 50489.601002, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 0 ()", - "asctime": "2025-08-19 23:27:25,753" + "message": "Result (Value for ViDevLight.brightness (gfw.floor.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:48,614" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "=", "0", "" @@ -112247,25 +126468,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638845.754091, - "msecs": 754.0, - "relativeCreated": 86017.229979, - "thread": 131449228267776, + "created": 1755888888.6148465, + "msecs": 614.0, + "relativeCreated": 50489.655613, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 0 ()", - "asctime": "2025-08-19 23:27:25,754" + "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:48,614" } ], - "time_consumption": 5.340576171875e-05 + "time_consumption": 3.910064697265625e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.brightness (gfw.floor.main_light)", "20" ], "levelname": "DEBUG", @@ -112275,47 +126496,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638845.7543273, - "msecs": 754.0, - "relativeCreated": 86017.466308, - "thread": 131449228267776, + "created": 1755888888.7158248, + "msecs": 715.0, + "relativeCreated": 50590.634121, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 20", - "asctime": "2025-08-19 23:27:25,754", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "20", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638845.9556327, - "msecs": 955.0, - "relativeCreated": 86218.771752, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 20 and Type is ).", - "asctime": "2025-08-19 23:27:25,955", + "message": "Setting state of Light.brightness (gfw.floor.main_light) to 20", + "asctime": "2025-08-22 20:54:48,715", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112333,16 +126525,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.7545087, - "msecs": 754.0, - "relativeCreated": 86017.647926, - "thread": 131449228267776, + "created": 1755888888.6150472, + "msecs": 615.0, + "relativeCreated": 50489.856365, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,754" + "asctime": "2025-08-22 20:54:48,615" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112360,16 +126552,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.754775, - "msecs": 754.0, - "relativeCreated": 86017.914076, - "thread": 131449228267776, + "created": 1755888888.6153162, + "msecs": 615.0, + "relativeCreated": 50490.125539, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,754" + "asctime": "2025-08-22 20:54:48,615" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112387,16 +126579,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.7556818, - "msecs": 755.0, - "relativeCreated": 86018.82091, - "thread": 131449202394816, + "created": 1755888888.6160622, + "msecs": 616.0, + "relativeCreated": 50490.871319, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,755" + "asctime": "2025-08-22 20:54:48,616" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112414,16 +126606,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.7560668, - "msecs": 756.0, - "relativeCreated": 86019.205768, - "thread": 131449202394816, + "created": 1755888888.6163995, + "msecs": 616.0, + "relativeCreated": 50491.208887, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 52.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,756" + "asctime": "2025-08-22 20:54:48,616" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -112441,22 +126633,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.7963636, - "msecs": 796.0, - "relativeCreated": 86059.502617, - "thread": 131449202394816, + "created": 1755888888.657269, + "msecs": 657.0, + "relativeCreated": 50532.07824, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'20'", - "asctime": "2025-08-19 23:27:25,796" - }, + "asctime": "2025-08-22 20:54:48,657" + } + ], + "time_consumption": 0.05855584144592285 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.7161393, + "msecs": 716.0, + "relativeCreated": 50590.948625, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content 20 and Type is ).", + "asctime": "2025-08-22 20:54:48,716", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "20", "" ], @@ -112469,22 +126691,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638845.9554193, - "msecs": 955.0, - "relativeCreated": 86218.558392, - "thread": 131449228267776, + "created": 1755888888.7160423, + "msecs": 716.0, + "relativeCreated": 50590.851562, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 20 ()", - "asctime": "2025-08-19 23:27:25,955" + "message": "Result (Value for ViDevLight.brightness (gfw.floor.main_light)): 20 ()", + "asctime": "2025-08-22 20:54:48,716" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "=", "20", "" @@ -112498,25 +126720,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638845.9555748, - "msecs": 955.0, - "relativeCreated": 86218.713717, - "thread": 131449228267776, + "created": 1755888888.7160964, + "msecs": 716.0, + "relativeCreated": 50590.905769, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 20 ()", - "asctime": "2025-08-19 23:27:25,955" + "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 20 ()", + "asctime": "2025-08-22 20:54:48,716" } ], - "time_consumption": 5.793571472167969e-05 + "time_consumption": 4.291534423828125e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.brightness (gfw.floor.main_light)", "40" ], "levelname": "DEBUG", @@ -112526,47 +126748,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638845.955798, - "msecs": 955.0, - "relativeCreated": 86218.937142, - "thread": 131449228267776, + "created": 1755888888.817017, + "msecs": 817.0, + "relativeCreated": 50691.826388, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 40", - "asctime": "2025-08-19 23:27:25,955", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "40", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638846.1572816, - "msecs": 157.0, - "relativeCreated": 86420.420588, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 40 and Type is ).", - "asctime": "2025-08-19 23:27:26,157", + "message": "Setting state of Light.brightness (gfw.floor.main_light) to 40", + "asctime": "2025-08-22 20:54:48,817", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112584,16 +126777,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.9560287, - "msecs": 956.0, - "relativeCreated": 86219.167711, - "thread": 131449228267776, + "created": 1755888888.7163079, + "msecs": 716.0, + "relativeCreated": 50591.117181, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,956" + "asctime": "2025-08-22 20:54:48,716" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112611,16 +126804,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638845.956344, - "msecs": 956.0, - "relativeCreated": 86219.482936, - "thread": 131449228267776, + "created": 1755888888.7165656, + "msecs": 716.0, + "relativeCreated": 50591.374712, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:25,956" + "asctime": "2025-08-22 20:54:48,716" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112638,16 +126831,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.9571552, - "msecs": 957.0, - "relativeCreated": 86220.294395, - "thread": 131449202394816, + "created": 1755888888.7173345, + "msecs": 717.0, + "relativeCreated": 50592.14385, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,957" + "asctime": "2025-08-22 20:54:48,717" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112665,16 +126858,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.957512, - "msecs": 957.0, - "relativeCreated": 86220.650937, - "thread": 131449202394816, + "created": 1755888888.7177148, + "msecs": 717.0, + "relativeCreated": 50592.523866, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 102.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:25,957" + "asctime": "2025-08-22 20:54:48,717" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -112692,22 +126885,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638845.9994211, - "msecs": 999.0, - "relativeCreated": 86262.560227, - "thread": 131449202394816, + "created": 1755888888.7583053, + "msecs": 758.0, + "relativeCreated": 50633.114593, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'40'", - "asctime": "2025-08-19 23:27:25,999" - }, + "asctime": "2025-08-22 20:54:48,758" + } + ], + "time_consumption": 0.05871176719665527 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "40", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.8173723, + "msecs": 817.0, + "relativeCreated": 50692.181573, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content 40 and Type is ).", + "asctime": "2025-08-22 20:54:48,817", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "40", "" ], @@ -112720,22 +126943,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638846.1570866, - "msecs": 157.0, - "relativeCreated": 86420.225828, - "thread": 131449228267776, + "created": 1755888888.8172343, + "msecs": 817.0, + "relativeCreated": 50692.043433, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 40 ()", - "asctime": "2025-08-19 23:27:26,157" + "message": "Result (Value for ViDevLight.brightness (gfw.floor.main_light)): 40 ()", + "asctime": "2025-08-22 20:54:48,817" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "=", "40", "" @@ -112749,25 +126972,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638846.1572287, - "msecs": 157.0, - "relativeCreated": 86420.367879, - "thread": 131449228267776, + "created": 1755888888.8173165, + "msecs": 817.0, + "relativeCreated": 50692.125745, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 40 ()", - "asctime": "2025-08-19 23:27:26,157" + "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 40 ()", + "asctime": "2025-08-22 20:54:48,817" } ], - "time_consumption": 5.2928924560546875e-05 + "time_consumption": 5.5789947509765625e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.brightness (gfw.floor.main_light)", "60" ], "levelname": "DEBUG", @@ -112777,47 +127000,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638846.1574385, - "msecs": 157.0, - "relativeCreated": 86420.577542, - "thread": 131449228267776, + "created": 1755888888.9183109, + "msecs": 918.0, + "relativeCreated": 50793.120172, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 60", - "asctime": "2025-08-19 23:27:26,157", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "60", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638846.3586717, - "msecs": 358.0, - "relativeCreated": 86621.810667, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 60 and Type is ).", - "asctime": "2025-08-19 23:27:26,358", + "message": "Setting state of Light.brightness (gfw.floor.main_light) to 60", + "asctime": "2025-08-22 20:54:48,918", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112835,16 +127029,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.1576118, - "msecs": 157.0, - "relativeCreated": 86420.75069, - "thread": 131449228267776, + "created": 1755888888.8175502, + "msecs": 817.0, + "relativeCreated": 50692.359291, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:26,157" + "asctime": "2025-08-22 20:54:48,817" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112862,16 +127056,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.1578815, - "msecs": 157.0, - "relativeCreated": 86421.020652, - "thread": 131449228267776, + "created": 1755888888.8178358, + "msecs": 817.0, + "relativeCreated": 50692.644944, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:26,157" + "asctime": "2025-08-22 20:54:48,817" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -112889,16 +127083,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.158684, - "msecs": 158.0, - "relativeCreated": 86421.822894, - "thread": 131449202394816, + "created": 1755888888.8187904, + "msecs": 818.0, + "relativeCreated": 50693.599653, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:26,158" + "asctime": "2025-08-22 20:54:48,818" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -112916,16 +127110,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.1590273, - "msecs": 159.0, - "relativeCreated": 86422.16654, - "thread": 131449202394816, + "created": 1755888888.8191254, + "msecs": 819.0, + "relativeCreated": 50693.934748, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 153.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:26,159" + "asctime": "2025-08-22 20:54:48,819" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -112943,22 +127137,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.199478, - "msecs": 199.0, - "relativeCreated": 86462.616935, - "thread": 131449202394816, + "created": 1755888888.86034, + "msecs": 860.0, + "relativeCreated": 50735.149369, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'60'", - "asctime": "2025-08-19 23:27:26,199" - }, + "asctime": "2025-08-22 20:54:48,860" + } + ], + "time_consumption": 0.05797076225280762 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "60", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888888.918628, + "msecs": 918.0, + "relativeCreated": 50793.43732, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content 60 and Type is ).", + "asctime": "2025-08-22 20:54:48,918", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "60", "" ], @@ -112971,22 +127195,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638846.3584533, - "msecs": 358.0, - "relativeCreated": 86621.592227, - "thread": 131449228267776, + "created": 1755888888.9185305, + "msecs": 918.0, + "relativeCreated": 50793.339902, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 60 ()", - "asctime": "2025-08-19 23:27:26,358" + "message": "Result (Value for ViDevLight.brightness (gfw.floor.main_light)): 60 ()", + "asctime": "2025-08-22 20:54:48,918" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "=", "60", "" @@ -113000,25 +127224,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638846.3585987, - "msecs": 358.0, - "relativeCreated": 86621.737617, - "thread": 131449228267776, + "created": 1755888888.9185853, + "msecs": 918.0, + "relativeCreated": 50793.394599, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 60 ()", - "asctime": "2025-08-19 23:27:26,358" + "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 60 ()", + "asctime": "2025-08-22 20:54:48,918" } ], - "time_consumption": 7.295608520507812e-05 + "time_consumption": 4.267692565917969e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.brightness (gfw.floor.main_light)", "80" ], "levelname": "DEBUG", @@ -113028,47 +127252,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638846.3588574, - "msecs": 358.0, - "relativeCreated": 86621.996501, - "thread": 131449228267776, + "created": 1755888889.0195749, + "msecs": 19.0, + "relativeCreated": 50894.384054, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 80", - "asctime": "2025-08-19 23:27:26,358", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "80", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638846.5602312, - "msecs": 560.0, - "relativeCreated": 86823.3703, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 80 and Type is ).", - "asctime": "2025-08-19 23:27:26,560", + "message": "Setting state of Light.brightness (gfw.floor.main_light) to 80", + "asctime": "2025-08-22 20:54:49,019", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -113086,16 +127281,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.3590798, - "msecs": 359.0, - "relativeCreated": 86622.218865, - "thread": 131449228267776, + "created": 1755888888.9188337, + "msecs": 918.0, + "relativeCreated": 50793.6429, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:26,359" + "asctime": "2025-08-22 20:54:48,918" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -113113,16 +127308,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.3593528, - "msecs": 359.0, - "relativeCreated": 86622.491914, - "thread": 131449228267776, + "created": 1755888888.9191062, + "msecs": 919.0, + "relativeCreated": 50793.915549, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:26,359" + "asctime": "2025-08-22 20:54:48,919" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -113140,16 +127335,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.3600025, - "msecs": 360.0, - "relativeCreated": 86623.141441, - "thread": 131449202394816, + "created": 1755888888.919919, + "msecs": 919.0, + "relativeCreated": 50794.728289, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:26,360" + "asctime": "2025-08-22 20:54:48,919" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -113167,16 +127362,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.3604, - "msecs": 360.0, - "relativeCreated": 86623.538766, - "thread": 131449202394816, + "created": 1755888888.9202647, + "msecs": 920.0, + "relativeCreated": 50795.073992, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 203.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:26,360" + "asctime": "2025-08-22 20:54:48,920" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -113194,22 +127389,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.4015472, - "msecs": 401.0, - "relativeCreated": 86664.68628, - "thread": 131449202394816, + "created": 1755888888.9612823, + "msecs": 961.0, + "relativeCreated": 50836.091582, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'80'", - "asctime": "2025-08-19 23:27:26,401" - }, + "asctime": "2025-08-22 20:54:48,961" + } + ], + "time_consumption": 0.05829262733459473 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "80", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.0199234, + "msecs": 19.0, + "relativeCreated": 50894.732565, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content 80 and Type is ).", + "asctime": "2025-08-22 20:54:49,019", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "80", "" ], @@ -113222,22 +127447,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638846.5600438, - "msecs": 560.0, - "relativeCreated": 86823.182857, - "thread": 131449228267776, + "created": 1755888889.0198247, + "msecs": 19.0, + "relativeCreated": 50894.633799, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 80 ()", - "asctime": "2025-08-19 23:27:26,560" + "message": "Result (Value for ViDevLight.brightness (gfw.floor.main_light)): 80 ()", + "asctime": "2025-08-22 20:54:49,019" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "=", "80", "" @@ -113251,25 +127476,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638846.5601795, - "msecs": 560.0, - "relativeCreated": 86823.318403, - "thread": 131449228267776, + "created": 1755888889.0198805, + "msecs": 19.0, + "relativeCreated": 50894.689696, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 80 ()", - "asctime": "2025-08-19 23:27:26,560" + "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 80 ()", + "asctime": "2025-08-22 20:54:49,019" } ], - "time_consumption": 5.173683166503906e-05 + "time_consumption": 4.291534423828125e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.brightness (gfw.floor.main_light)", "100" ], "levelname": "DEBUG", @@ -113279,47 +127504,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638846.5603814, - "msecs": 560.0, - "relativeCreated": 86823.520419, - "thread": 131449228267776, + "created": 1755888889.120829, + "msecs": 120.0, + "relativeCreated": 50995.638532, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 100", - "asctime": "2025-08-19 23:27:26,560", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "100", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638846.7617238, - "msecs": 761.0, - "relativeCreated": 87024.862765, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 100 and Type is ).", - "asctime": "2025-08-19 23:27:26,761", + "message": "Setting state of Light.brightness (gfw.floor.main_light) to 100", + "asctime": "2025-08-22 20:54:49,120", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -113337,16 +127533,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.5605521, - "msecs": 560.0, - "relativeCreated": 86823.69111, - "thread": 131449228267776, + "created": 1755888889.020124, + "msecs": 20.0, + "relativeCreated": 50894.933155, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:26,560" + "asctime": "2025-08-22 20:54:49,020" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -113364,16 +127560,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.5608313, - "msecs": 560.0, - "relativeCreated": 86823.970153, - "thread": 131449228267776, + "created": 1755888889.0203702, + "msecs": 20.0, + "relativeCreated": 50895.179408, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}", - "asctime": "2025-08-19 23:27:26,560" + "asctime": "2025-08-22 20:54:49,020" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -113391,16 +127587,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.5616803, - "msecs": 561.0, - "relativeCreated": 86824.819419, - "thread": 131449202394816, + "created": 1755888889.0211751, + "msecs": 21.0, + "relativeCreated": 50895.984314, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:26,561" + "asctime": "2025-08-22 20:54:49,021" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -113418,16 +127614,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.5620553, - "msecs": 562.0, - "relativeCreated": 86825.194456, - "thread": 131449202394816, + "created": 1755888889.021495, + "msecs": 21.0, + "relativeCreated": 50896.304393, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 352.0}'", - "asctime": "2025-08-19 23:27:26,562" + "asctime": "2025-08-22 20:54:49,021" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", @@ -113445,22 +127641,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.6026616, - "msecs": 602.0, - "relativeCreated": 86865.800666, - "thread": 131449202394816, + "created": 1755888889.0622795, + "msecs": 62.0, + "relativeCreated": 50937.08875, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'100'", - "asctime": "2025-08-19 23:27:26,602" - }, + "asctime": "2025-08-22 20:54:49,062" + } + ], + "time_consumption": 0.05854964256286621 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "100", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.1211696, + "msecs": 121.0, + "relativeCreated": 50995.978992, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.brightness (gfw.floor.main_light) is correct (Content 100 and Type is ).", + "asctime": "2025-08-22 20:54:49,121", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "100", "" ], @@ -113473,22 +127699,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638846.7615294, - "msecs": 761.0, - "relativeCreated": 87024.66841, - "thread": 131449228267776, + "created": 1755888889.1210735, + "msecs": 121.0, + "relativeCreated": 50995.882758, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 100 ()", - "asctime": "2025-08-19 23:27:26,761" + "message": "Result (Value for ViDevLight.brightness (gfw.floor.main_light)): 100 ()", + "asctime": "2025-08-22 20:54:49,121" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.brightness (gfw.floor.main_light)", "=", "100", "" @@ -113502,28 +127728,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638846.7616708, - "msecs": 761.0, - "relativeCreated": 87024.8098, - "thread": 131449228267776, + "created": 1755888889.121128, + "msecs": 121.0, + "relativeCreated": 50995.937514, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 100 ()", - "asctime": "2025-08-19 23:27:26,761" + "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 100 ()", + "asctime": "2025-08-22 20:54:49,121" } ], - "time_consumption": 5.2928924560546875e-05 + "time_consumption": 4.1484832763671875e-05 } ], - "time_consumption": 1.5110785961151123, - "time_start": "2025-08-19 23:27:25,250", - "time_finished": "2025-08-19 23:27:26,761" + "time_consumption": 0.8090741634368896, + "time_start": "2025-08-22 20:54:48,312", + "time_finished": "2025-08-22 20:54:49,121" }, - "REQ-0365": { + "ViDevLight.color_temp (gfw.floor.main_light) -> Light.color_temp (gfw.floor.main_light)": { "name": "__tLogger__", - "msg": "REQ-0365", + "msg": "ViDevLight.color_temp (gfw.floor.main_light) -> Light.color_temp (gfw.floor.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -113534,16 +127760,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638846.7620704, - "msecs": 762.0, - "relativeCreated": 87025.209623, - "thread": 131449228267776, + "created": 1755888889.121425, + "msecs": 121.0, + "relativeCreated": 50996.234247, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0365", - "asctime": "2025-08-19 23:27:26,762", + "message": "ViDevLight.color_temp (gfw.floor.main_light) -> Light.color_temp (gfw.floor.main_light)", + "asctime": "2025-08-22 20:54:49,121", "moduleLogger": [], "testcaseLogger": [ { @@ -113559,16 +127785,16 @@ "stack_info": null, "lineno": 13, "funcName": "device_follow", - "created": 1755638846.8624632, - "msecs": 862.0, - "relativeCreated": 87125.602254, - "thread": 131449228267776, + "created": 1755888889.2218244, + "msecs": 221.0, + "relativeCreated": 51096.633666, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:26,862", + "asctime": "2025-08-22 20:54:49,221", "moduleLogger": [], "time_consumption": 0.0 }, @@ -113587,16 +127813,16 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638846.9636247, - "msecs": 963.0, - "relativeCreated": 87226.763626, - "thread": 131449228267776, + "created": 1755888889.3230464, + "msecs": 323.0, + "relativeCreated": 51197.855711, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:27:26,963", + "asctime": "2025-08-22 20:54:49,323", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -113614,16 +127840,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.8627713, - "msecs": 862.0, - "relativeCreated": 87125.91011, - "thread": 131449228267776, + "created": 1755888889.2221375, + "msecs": 222.0, + "relativeCreated": 51096.946588, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:26,862" + "asctime": "2025-08-22 20:54:49,222" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -113641,16 +127867,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.8631792, - "msecs": 863.0, - "relativeCreated": 87126.31835, - "thread": 131449228267776, + "created": 1755888889.2224643, + "msecs": 222.0, + "relativeCreated": 51097.273528, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:26,863" + "asctime": "2025-08-22 20:54:49,222" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -113668,16 +127894,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638846.8633716, - "msecs": 863.0, - "relativeCreated": 87126.51048, - "thread": 131449228267776, + "created": 1755888889.2226422, + "msecs": 222.0, + "relativeCreated": 51097.451369, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:26,863" + "asctime": "2025-08-22 20:54:49,222" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -113695,43 +127921,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.865846, - "msecs": 865.0, - "relativeCreated": 87128.984985, - "thread": 131449202394816, + "created": 1755888889.2250488, + "msecs": 225.0, + "relativeCreated": 51099.858149, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:26,865" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_light_2/set", - "b'{\"color_temp\": 454}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755638846.8663206, - "msecs": 866.0, - "relativeCreated": 87129.459686, - "thread": 131449202394816, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:26,866" + "asctime": "2025-08-22 20:54:49,225" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -113749,16 +127948,43 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.9064121, - "msecs": 906.0, - "relativeCreated": 87169.55107, - "thread": 131449202394816, + "created": 1755888889.225431, + "msecs": 225.0, + "relativeCreated": 51100.240217, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:26,906" + "asctime": "2025-08-22 20:54:49,225" + }, + { + "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee_gfw/gfw/floor/main_light_2/set", + "b'{\"color_temp\": 454}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__receive__", + "created": 1755888889.2662833, + "msecs": 266.0, + "relativeCreated": 51141.092389, + "thread": 133814225516224, + "threadName": "paho-mqtt-client-", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 454}'", + "asctime": "2025-08-22 20:54:49,266" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -113776,16 +128002,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.9066548, - "msecs": 906.0, - "relativeCreated": 87169.793783, - "thread": 131449202394816, + "created": 1755888889.266688, + "msecs": 266.0, + "relativeCreated": 51141.497254, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:26,906" + "asctime": "2025-08-22 20:54:49,266" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -113803,19 +128029,19 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638846.907499, - "msecs": 907.0, - "relativeCreated": 87170.63789, - "thread": 131449202394816, + "created": 1755888889.2669265, + "msecs": 266.0, + "relativeCreated": 51141.735757, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:26,907" + "asctime": "2025-08-22 20:54:49,266" } ], - "time_consumption": 0.056125640869140625 + "time_consumption": 0.05611991882324219 }, { "name": "__tLogger__", @@ -113833,16 +128059,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638847.0643654, - "msecs": 64.0, - "relativeCreated": 87327.504263, - "thread": 131449228267776, + "created": 1755888889.3234324, + "msecs": 323.0, + "relativeCreated": 51198.241712, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:27:27,064", + "asctime": "2025-08-22 20:54:49,323", "moduleLogger": [ { "name": "__unittest__", @@ -113861,16 +128087,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638847.0641675, - "msecs": 64.0, - "relativeCreated": 87327.306394, - "thread": 131449228267776, + "created": 1755888889.3233302, + "msecs": 323.0, + "relativeCreated": 51198.139241, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:27:27,064" + "asctime": "2025-08-22 20:54:49,323" }, { "name": "__unittest__", @@ -113890,25 +128116,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638847.064311, - "msecs": 64.0, - "relativeCreated": 87327.449972, - "thread": 131449228267776, + "created": 1755888889.3233883, + "msecs": 323.0, + "relativeCreated": 51198.197671, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:27:27,064" + "asctime": "2025-08-22 20:54:49,323" } ], - "time_consumption": 5.435943603515625e-05 + "time_consumption": 4.410743713378906e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.color_temp (gfw.floor.main_light)", "0" ], "levelname": "DEBUG", @@ -113918,47 +128144,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638847.0644777, - "msecs": 64.0, - "relativeCreated": 87327.616624, - "thread": 131449228267776, + "created": 1755888889.424111, + "msecs": 424.0, + "relativeCreated": 51298.920076, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 0", - "asctime": "2025-08-19 23:27:27,064", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638847.26546, - "msecs": 265.0, - "relativeCreated": 87528.59893, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:27,265", + "message": "Setting state of ViDevLight.color_temp (gfw.floor.main_light) to 0", + "asctime": "2025-08-22 20:54:49,424", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -113976,16 +128173,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.064621, - "msecs": 64.0, - "relativeCreated": 87327.759962, - "thread": 131449228267776, + "created": 1755888889.3235495, + "msecs": 323.0, + "relativeCreated": 51198.358589, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 0", - "asctime": "2025-08-19 23:27:27,064" + "asctime": "2025-08-22 20:54:49,323" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -114003,16 +128200,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.0675733, - "msecs": 67.0, - "relativeCreated": 87330.712239, - "thread": 131449202394816, + "created": 1755888889.326302, + "msecs": 326.0, + "relativeCreated": 51201.111172, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:27:27,067" + "asctime": "2025-08-22 20:54:49,326" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -114030,16 +128227,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.0678704, - "msecs": 67.0, - "relativeCreated": 87331.009498, - "thread": 131449202394816, + "created": 1755888889.3265345, + "msecs": 326.0, + "relativeCreated": 51201.34368, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:27,067" + "asctime": "2025-08-22 20:54:49,326" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -114057,16 +128254,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.0682962, - "msecs": 68.0, - "relativeCreated": 87331.435311, - "thread": 131449202394816, + "created": 1755888889.3269072, + "msecs": 326.0, + "relativeCreated": 51201.716426, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 250}'", - "asctime": "2025-08-19 23:27:27,068" + "asctime": "2025-08-22 20:54:49,326" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -114084,16 +128281,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.0684488, - "msecs": 68.0, - "relativeCreated": 87331.587713, - "thread": 131449202394816, + "created": 1755888889.327044, + "msecs": 327.0, + "relativeCreated": 51201.853264, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:27,068" + "asctime": "2025-08-22 20:54:49,327" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -114111,16 +128308,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.0693343, - "msecs": 69.0, - "relativeCreated": 87332.473256, - "thread": 131449202394816, + "created": 1755888889.327677, + "msecs": 327.0, + "relativeCreated": 51202.486056, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:27,069" + "asctime": "2025-08-22 20:54:49,327" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -114138,16 +128335,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.0696385, - "msecs": 69.0, - "relativeCreated": 87332.777299, - "thread": 131449202394816, + "created": 1755888889.3279324, + "msecs": 327.0, + "relativeCreated": 51202.741602, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:27,069" + "asctime": "2025-08-22 20:54:49,327" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -114165,22 +128362,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.1134243, - "msecs": 113.0, - "relativeCreated": 87376.56331, - "thread": 131449202394816, + "created": 1755888889.3690045, + "msecs": 369.0, + "relativeCreated": 51243.813691, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:27:27,113" - }, + "asctime": "2025-08-22 20:54:49,369" + } + ], + "time_consumption": 0.055106401443481445 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.4244716, + "msecs": 424.0, + "relativeCreated": 51299.280893, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:49,424", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "0", "" ], @@ -114193,22 +128420,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638847.2652495, - "msecs": 265.0, - "relativeCreated": 87528.388615, - "thread": 131449228267776, + "created": 1755888889.4243784, + "msecs": 424.0, + "relativeCreated": 51299.187574, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 0 ()", - "asctime": "2025-08-19 23:27:27,265" + "message": "Result (Value for Light.color_temp (gfw.floor.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:49,424" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "=", "0", "" @@ -114222,25 +128449,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638847.2653801, - "msecs": 265.0, - "relativeCreated": 87528.519133, - "thread": 131449228267776, + "created": 1755888889.4244316, + "msecs": 424.0, + "relativeCreated": 51299.240763, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 0 ()", - "asctime": "2025-08-19 23:27:27,265" + "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:49,424" } ], - "time_consumption": 7.987022399902344e-05 + "time_consumption": 4.00543212890625e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.color_temp (gfw.floor.main_light)", "2" ], "levelname": "DEBUG", @@ -114250,47 +128477,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638847.26558, - "msecs": 265.0, - "relativeCreated": 87528.719054, - "thread": 131449228267776, + "created": 1755888889.5249884, + "msecs": 524.0, + "relativeCreated": 51399.797526, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 2", - "asctime": "2025-08-19 23:27:27,265", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638847.466761, - "msecs": 466.0, - "relativeCreated": 87729.900329, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:27:27,466", + "message": "Setting state of ViDevLight.color_temp (gfw.floor.main_light) to 2", + "asctime": "2025-08-22 20:54:49,524", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -114308,16 +128506,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.2656887, - "msecs": 265.0, - "relativeCreated": 87528.827498, - "thread": 131449228267776, + "created": 1755888889.4245763, + "msecs": 424.0, + "relativeCreated": 51299.385551, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 2", - "asctime": "2025-08-19 23:27:27,265" + "asctime": "2025-08-22 20:54:49,424" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -114335,16 +128533,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.2683728, - "msecs": 268.0, - "relativeCreated": 87531.511751, - "thread": 131449202394816, + "created": 1755888889.4273129, + "msecs": 427.0, + "relativeCreated": 51302.122099, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:27:27,268" + "asctime": "2025-08-22 20:54:49,427" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -114362,16 +128560,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.2686532, - "msecs": 268.0, - "relativeCreated": 87531.792152, - "thread": 131449202394816, + "created": 1755888889.4275384, + "msecs": 427.0, + "relativeCreated": 51302.347754, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:27,268" + "asctime": "2025-08-22 20:54:49,427" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -114389,16 +128587,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.2690198, - "msecs": 269.0, - "relativeCreated": 87532.158957, - "thread": 131449202394816, + "created": 1755888889.4279256, + "msecs": 427.0, + "relativeCreated": 51302.734622, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 291}'", - "asctime": "2025-08-19 23:27:27,269" + "asctime": "2025-08-22 20:54:49,427" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -114416,16 +128614,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.269156, - "msecs": 269.0, - "relativeCreated": 87532.295127, - "thread": 131449202394816, + "created": 1755888889.4280632, + "msecs": 428.0, + "relativeCreated": 51302.872389, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:27,269" + "asctime": "2025-08-22 20:54:49,428" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -114443,16 +128641,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.2696579, - "msecs": 269.0, - "relativeCreated": 87532.796981, - "thread": 131449202394816, + "created": 1755888889.4286518, + "msecs": 428.0, + "relativeCreated": 51303.460921, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:27,269" + "asctime": "2025-08-22 20:54:49,428" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -114470,16 +128668,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.2699263, - "msecs": 269.0, - "relativeCreated": 87533.065356, - "thread": 131449202394816, + "created": 1755888889.4289172, + "msecs": 428.0, + "relativeCreated": 51303.726512, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:27,269" + "asctime": "2025-08-22 20:54:49,428" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -114497,22 +128695,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.3108854, - "msecs": 310.0, - "relativeCreated": 87574.024406, - "thread": 131449202394816, + "created": 1755888889.4700925, + "msecs": 470.0, + "relativeCreated": 51344.901856, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:27:27,310" - }, + "asctime": "2025-08-22 20:54:49,470" + } + ], + "time_consumption": 0.054895877838134766 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.5253508, + "msecs": 525.0, + "relativeCreated": 51400.160054, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:49,525", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "2", "" ], @@ -114525,22 +128753,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638847.4665751, - "msecs": 466.0, - "relativeCreated": 87729.714016, - "thread": 131449228267776, + "created": 1755888889.5252588, + "msecs": 525.0, + "relativeCreated": 51400.067997, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 2 ()", - "asctime": "2025-08-19 23:27:27,466" + "message": "Result (Value for Light.color_temp (gfw.floor.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:49,525" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "=", "2", "" @@ -114554,25 +128782,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638847.466709, - "msecs": 466.0, - "relativeCreated": 87729.848068, - "thread": 131449228267776, + "created": 1755888889.525312, + "msecs": 525.0, + "relativeCreated": 51400.121214, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 2 ()", - "asctime": "2025-08-19 23:27:27,466" + "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:49,525" } ], - "time_consumption": 5.221366882324219e-05 + "time_consumption": 3.886222839355469e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.color_temp (gfw.floor.main_light)", "4" ], "levelname": "DEBUG", @@ -114582,47 +128810,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638847.4669328, - "msecs": 466.0, - "relativeCreated": 87730.071704, - "thread": 131449228267776, + "created": 1755888889.625774, + "msecs": 625.0, + "relativeCreated": 51500.583161, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 4", - "asctime": "2025-08-19 23:27:27,466", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638847.6680381, - "msecs": 668.0, - "relativeCreated": 87931.177084, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:27:27,668", + "message": "Setting state of ViDevLight.color_temp (gfw.floor.main_light) to 4", + "asctime": "2025-08-22 20:54:49,625", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -114640,16 +128839,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.4670482, - "msecs": 467.0, - "relativeCreated": 87730.187297, - "thread": 131449228267776, + "created": 1755888889.5254579, + "msecs": 525.0, + "relativeCreated": 51400.267093, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 4", - "asctime": "2025-08-19 23:27:27,467" + "asctime": "2025-08-22 20:54:49,525" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -114667,16 +128866,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.4696617, - "msecs": 469.0, - "relativeCreated": 87732.800824, - "thread": 131449202394816, + "created": 1755888889.528016, + "msecs": 528.0, + "relativeCreated": 51402.825252, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:27:27,469" + "asctime": "2025-08-22 20:54:49,528" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -114694,16 +128893,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.4699454, - "msecs": 469.0, - "relativeCreated": 87733.084392, - "thread": 131449202394816, + "created": 1755888889.5288603, + "msecs": 528.0, + "relativeCreated": 51403.669739, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:27,469" + "asctime": "2025-08-22 20:54:49,528" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -114721,16 +128920,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.47029, - "msecs": 470.0, - "relativeCreated": 87733.428906, - "thread": 131449202394816, + "created": 1755888889.5292404, + "msecs": 529.0, + "relativeCreated": 51404.049445, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 332}'", - "asctime": "2025-08-19 23:27:27,470" + "asctime": "2025-08-22 20:54:49,529" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -114748,16 +128947,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.4704254, - "msecs": 470.0, - "relativeCreated": 87733.564228, - "thread": 131449202394816, + "created": 1755888889.5293753, + "msecs": 529.0, + "relativeCreated": 51404.184531, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:27,470" + "asctime": "2025-08-22 20:54:49,529" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -114775,16 +128974,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.470929, - "msecs": 470.0, - "relativeCreated": 87734.067977, - "thread": 131449202394816, + "created": 1755888889.5300026, + "msecs": 530.0, + "relativeCreated": 51404.81184, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:27,470" + "asctime": "2025-08-22 20:54:49,530" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -114802,16 +129001,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.4711766, - "msecs": 471.0, - "relativeCreated": 87734.315764, - "thread": 131449202394816, + "created": 1755888889.5302372, + "msecs": 530.0, + "relativeCreated": 51405.04647, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:27,471" + "asctime": "2025-08-22 20:54:49,530" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -114829,22 +129028,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.5120957, - "msecs": 512.0, - "relativeCreated": 87775.234877, - "thread": 131449202394816, + "created": 1755888889.571187, + "msecs": 571.0, + "relativeCreated": 51445.996243, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:27:27,512" - }, + "asctime": "2025-08-22 20:54:49,571" + } + ], + "time_consumption": 0.05458688735961914 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.6261141, + "msecs": 626.0, + "relativeCreated": 51500.923242, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:49,626", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "4", "" ], @@ -114857,22 +129086,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638847.6677825, - "msecs": 667.0, - "relativeCreated": 87930.921756, - "thread": 131449228267776, + "created": 1755888889.6260142, + "msecs": 626.0, + "relativeCreated": 51500.823378, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 4 ()", - "asctime": "2025-08-19 23:27:27,667" + "message": "Result (Value for Light.color_temp (gfw.floor.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:49,626" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "=", "4", "" @@ -114886,25 +129115,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638847.6679478, - "msecs": 667.0, - "relativeCreated": 87931.086894, - "thread": 131449228267776, + "created": 1755888889.6260774, + "msecs": 626.0, + "relativeCreated": 51500.886594, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 4 ()", - "asctime": "2025-08-19 23:27:27,667" + "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:49,626" } ], - "time_consumption": 9.036064147949219e-05 + "time_consumption": 3.6716461181640625e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.color_temp (gfw.floor.main_light)", "6" ], "levelname": "DEBUG", @@ -114914,47 +129143,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638847.668156, - "msecs": 668.0, - "relativeCreated": 87931.294975, - "thread": 131449228267776, + "created": 1755888889.7267067, + "msecs": 726.0, + "relativeCreated": 51601.515867, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 6", - "asctime": "2025-08-19 23:27:27,668", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638847.8693569, - "msecs": 869.0, - "relativeCreated": 88132.495836, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:27:27,869", + "message": "Setting state of ViDevLight.color_temp (gfw.floor.main_light) to 6", + "asctime": "2025-08-22 20:54:49,726", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -114972,16 +129172,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.668272, - "msecs": 668.0, - "relativeCreated": 87931.411013, - "thread": 131449228267776, + "created": 1755888889.6262136, + "msecs": 626.0, + "relativeCreated": 51501.02282, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 6", - "asctime": "2025-08-19 23:27:27,668" + "asctime": "2025-08-22 20:54:49,626" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -114999,16 +129199,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.6709883, - "msecs": 670.0, - "relativeCreated": 87934.127207, - "thread": 131449202394816, + "created": 1755888889.6284645, + "msecs": 628.0, + "relativeCreated": 51503.273544, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:27:27,670" + "asctime": "2025-08-22 20:54:49,628" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -115026,16 +129226,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.671243, - "msecs": 671.0, - "relativeCreated": 87934.38209, - "thread": 131449202394816, + "created": 1755888889.6286845, + "msecs": 628.0, + "relativeCreated": 51503.49382, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:27,671" + "asctime": "2025-08-22 20:54:49,628" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -115053,16 +129253,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.6715925, - "msecs": 671.0, - "relativeCreated": 87934.731558, - "thread": 131449202394816, + "created": 1755888889.6290147, + "msecs": 629.0, + "relativeCreated": 51503.824145, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 372}'", - "asctime": "2025-08-19 23:27:27,671" + "asctime": "2025-08-22 20:54:49,629" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -115080,16 +129280,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.671726, - "msecs": 671.0, - "relativeCreated": 87934.865163, - "thread": 131449202394816, + "created": 1755888889.62914, + "msecs": 629.0, + "relativeCreated": 51503.949154, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:27,671" + "asctime": "2025-08-22 20:54:49,629" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -115107,16 +129307,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.672376, - "msecs": 672.0, - "relativeCreated": 87935.514859, - "thread": 131449202394816, + "created": 1755888889.629547, + "msecs": 629.0, + "relativeCreated": 51504.356119, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:27,672" + "asctime": "2025-08-22 20:54:49,629" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -115134,16 +129334,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.6726112, - "msecs": 672.0, - "relativeCreated": 87935.750323, - "thread": 131449202394816, + "created": 1755888889.6297858, + "msecs": 629.0, + "relativeCreated": 51504.595055, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:27,672" + "asctime": "2025-08-22 20:54:49,629" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -115161,22 +129361,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.7134867, - "msecs": 713.0, - "relativeCreated": 87976.625632, - "thread": 131449202394816, + "created": 1755888889.670965, + "msecs": 670.0, + "relativeCreated": 51545.774207, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:27:27,713" - }, + "asctime": "2025-08-22 20:54:49,670" + } + ], + "time_consumption": 0.05574178695678711 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.7270694, + "msecs": 727.0, + "relativeCreated": 51601.878698, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:49,727", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "6", "" ], @@ -115189,22 +129419,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638847.8691587, - "msecs": 869.0, - "relativeCreated": 88132.297643, - "thread": 131449228267776, + "created": 1755888889.7269742, + "msecs": 726.0, + "relativeCreated": 51601.78356, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 6 ()", - "asctime": "2025-08-19 23:27:27,869" + "message": "Result (Value for Light.color_temp (gfw.floor.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:49,726" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "=", "6", "" @@ -115218,25 +129448,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638847.8693013, - "msecs": 869.0, - "relativeCreated": 88132.44027, - "thread": 131449228267776, + "created": 1755888889.7270296, + "msecs": 727.0, + "relativeCreated": 51601.838763, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 6 ()", - "asctime": "2025-08-19 23:27:27,869" + "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:49,727" } ], - "time_consumption": 5.555152893066406e-05 + "time_consumption": 3.981590270996094e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.color_temp (gfw.floor.main_light)", "8" ], "levelname": "DEBUG", @@ -115246,47 +129476,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638847.8694792, - "msecs": 869.0, - "relativeCreated": 88132.61822, - "thread": 131449228267776, + "created": 1755888889.8277085, + "msecs": 827.0, + "relativeCreated": 51702.517579, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 8", - "asctime": "2025-08-19 23:27:27,869", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638848.0707552, - "msecs": 70.0, - "relativeCreated": 88333.894449, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:27:28,070", + "message": "Setting state of ViDevLight.color_temp (gfw.floor.main_light) to 8", + "asctime": "2025-08-22 20:54:49,827", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -115304,16 +129505,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.8696244, - "msecs": 869.0, - "relativeCreated": 88132.763282, - "thread": 131449228267776, + "created": 1755888889.7272003, + "msecs": 727.0, + "relativeCreated": 51602.009474, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 8", - "asctime": "2025-08-19 23:27:27,869" + "asctime": "2025-08-22 20:54:49,727" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -115331,16 +129532,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.872719, - "msecs": 872.0, - "relativeCreated": 88135.858161, - "thread": 131449202394816, + "created": 1755888889.7296228, + "msecs": 729.0, + "relativeCreated": 51604.432003, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:27:27,872" + "asctime": "2025-08-22 20:54:49,729" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -115358,16 +129559,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.8730175, - "msecs": 873.0, - "relativeCreated": 88136.156727, - "thread": 131449202394816, + "created": 1755888889.729841, + "msecs": 729.0, + "relativeCreated": 51604.650181, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:27,873" + "asctime": "2025-08-22 20:54:49,729" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -115385,16 +129586,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.8734221, - "msecs": 873.0, - "relativeCreated": 88136.560982, - "thread": 131449202394816, + "created": 1755888889.730163, + "msecs": 730.0, + "relativeCreated": 51604.972346, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 413}'", - "asctime": "2025-08-19 23:27:27,873" + "asctime": "2025-08-22 20:54:49,730" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -115412,16 +129613,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638847.8735828, - "msecs": 873.0, - "relativeCreated": 88136.721843, - "thread": 131449202394816, + "created": 1755888889.7302842, + "msecs": 730.0, + "relativeCreated": 51605.093496, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:27,873" + "asctime": "2025-08-22 20:54:49,730" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -115439,16 +129640,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.8742757, - "msecs": 874.0, - "relativeCreated": 88137.414628, - "thread": 131449202394816, + "created": 1755888889.730908, + "msecs": 730.0, + "relativeCreated": 51605.717068, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:27,874" + "asctime": "2025-08-22 20:54:49,730" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -115466,16 +129667,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.8745742, - "msecs": 874.0, - "relativeCreated": 88137.713017, - "thread": 131449202394816, + "created": 1755888889.7312047, + "msecs": 731.0, + "relativeCreated": 51606.014068, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:27,874" + "asctime": "2025-08-22 20:54:49,731" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -115493,22 +129694,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638847.915287, - "msecs": 915.0, - "relativeCreated": 88178.425933, - "thread": 131449202394816, + "created": 1755888889.773296, + "msecs": 773.0, + "relativeCreated": 51648.105291, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:27:27,915" - }, + "asctime": "2025-08-22 20:54:49,773" + } + ], + "time_consumption": 0.0544123649597168 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.8280668, + "msecs": 828.0, + "relativeCreated": 51702.876035, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:49,828", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "8", "" ], @@ -115521,22 +129752,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638848.070558, - "msecs": 70.0, - "relativeCreated": 88333.696867, - "thread": 131449228267776, + "created": 1755888889.8279746, + "msecs": 827.0, + "relativeCreated": 51702.783952, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 8 ()", - "asctime": "2025-08-19 23:27:28,070" + "message": "Result (Value for Light.color_temp (gfw.floor.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:49,827" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "=", "8", "" @@ -115550,25 +129781,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638848.0706995, - "msecs": 70.0, - "relativeCreated": 88333.838524, - "thread": 131449228267776, + "created": 1755888889.8280275, + "msecs": 828.0, + "relativeCreated": 51702.836723, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 8 ()", - "asctime": "2025-08-19 23:27:28,070" + "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:49,828" } ], - "time_consumption": 5.5789947509765625e-05 + "time_consumption": 3.933906555175781e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/gfw/floor/main_light", + "ViDevLight.color_temp (gfw.floor.main_light)", "10" ], "levelname": "DEBUG", @@ -115578,47 +129809,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638848.0708776, - "msecs": 70.0, - "relativeCreated": 88334.016525, - "thread": 131449228267776, + "created": 1755888889.9285238, + "msecs": 928.0, + "relativeCreated": 51803.332967, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/gfw/floor/main_light to 10", - "asctime": "2025-08-19 23:27:28,070", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638848.2720494, - "msecs": 272.0, - "relativeCreated": 88535.188367, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for zigbee_gfw/gfw/floor/main_light_1 is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:27:28,272", + "message": "Setting state of ViDevLight.color_temp (gfw.floor.main_light) to 10", + "asctime": "2025-08-22 20:54:49,928", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -115636,16 +129838,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.0710337, - "msecs": 71.0, - "relativeCreated": 88334.17257, - "thread": 131449228267776, + "created": 1755888889.8281736, + "msecs": 828.0, + "relativeCreated": 51702.982733, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:28,071" + "asctime": "2025-08-22 20:54:49,828" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", @@ -115663,16 +129865,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.0737953, - "msecs": 73.0, - "relativeCreated": 88336.934275, - "thread": 131449202394816, + "created": 1755888889.83077, + "msecs": 830.0, + "relativeCreated": 51705.579119, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:28,073" + "asctime": "2025-08-22 20:54:49,830" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -115690,16 +129892,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.0740843, - "msecs": 74.0, - "relativeCreated": 88337.22323, - "thread": 131449202394816, + "created": 1755888889.8309772, + "msecs": 830.0, + "relativeCreated": 51705.786487, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:28,074" + "asctime": "2025-08-22 20:54:49,830" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.set", @@ -115717,16 +129919,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.0744631, - "msecs": 74.0, - "relativeCreated": 88337.602276, - "thread": 131449202394816, + "created": 1755888889.8313081, + "msecs": 831.0, + "relativeCreated": 51706.117171, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 454}'", - "asctime": "2025-08-19 23:27:28,074" + "asctime": "2025-08-22 20:54:49,831" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -115744,16 +129946,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.0746088, - "msecs": 74.0, - "relativeCreated": 88337.747811, - "thread": 131449202394816, + "created": 1755888889.8314316, + "msecs": 831.0, + "relativeCreated": 51706.240795, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:28,074" + "asctime": "2025-08-22 20:54:49,831" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -115771,16 +129973,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.0753045, - "msecs": 75.0, - "relativeCreated": 88338.443541, - "thread": 131449202394816, + "created": 1755888889.8319843, + "msecs": 831.0, + "relativeCreated": 51706.793551, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:28,075" + "asctime": "2025-08-22 20:54:49,831" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -115798,16 +130000,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.0756009, - "msecs": 75.0, - "relativeCreated": 88338.739801, - "thread": 131449202394816, + "created": 1755888889.8322217, + "msecs": 832.0, + "relativeCreated": 51707.030868, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:28,075" + "asctime": "2025-08-22 20:54:49,832" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -115825,22 +130027,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.117374, - "msecs": 117.0, - "relativeCreated": 88380.512985, - "thread": 131449202394816, + "created": 1755888889.8742445, + "msecs": 874.0, + "relativeCreated": 51749.053484, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:28,117" - }, + "asctime": "2025-08-22 20:54:49,874" + } + ], + "time_consumption": 0.054279327392578125 + }, + { + "name": "__tLogger__", + "msg": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888889.9288826, + "msecs": 928.0, + "relativeCreated": 51803.691998, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Light.color_temp (gfw.floor.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:49,928", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "10", "" ], @@ -115853,22 +130085,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638848.2718241, - "msecs": 271.0, - "relativeCreated": 88534.96321, - "thread": 131449228267776, + "created": 1755888889.9287837, + "msecs": 928.0, + "relativeCreated": 51803.59286, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for zigbee_gfw/gfw/floor/main_light_1): 10 ()", - "asctime": "2025-08-19 23:27:28,271" + "message": "Result (Value for Light.color_temp (gfw.floor.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:49,928" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for zigbee_gfw/gfw/floor/main_light_1", + "Value for Light.color_temp (gfw.floor.main_light)", "=", "10", "" @@ -115882,28 +130114,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638848.27199, - "msecs": 271.0, - "relativeCreated": 88535.129118, - "thread": 131449228267776, + "created": 1755888889.92885, + "msecs": 928.0, + "relativeCreated": 51803.659085, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for zigbee_gfw/gfw/floor/main_light_1): result = 10 ()", - "asctime": "2025-08-19 23:27:28,271" + "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:49,928" } ], - "time_consumption": 5.936622619628906e-05 + "time_consumption": 3.266334533691406e-05 } ], - "time_consumption": 1.509979009628296, - "time_start": "2025-08-19 23:27:26,762", - "time_finished": "2025-08-19 23:27:28,272" + "time_consumption": 0.807457685470581, + "time_start": "2025-08-22 20:54:49,121", + "time_finished": "2025-08-22 20:54:49,928" }, - "REQ-0366": { + "Light.color_temp (gfw.floor.main_light) -> ViDevLight.color_temp (gfw.floor.main_light)": { "name": "__tLogger__", - "msg": "REQ-0366", + "msg": "Light.color_temp (gfw.floor.main_light) -> ViDevLight.color_temp (gfw.floor.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -115914,16 +130146,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638848.272337, - "msecs": 272.0, - "relativeCreated": 88535.475821, - "thread": 131449228267776, + "created": 1755888889.9290774, + "msecs": 929.0, + "relativeCreated": 51803.886719, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0366", - "asctime": "2025-08-19 23:27:28,272", + "message": "Light.color_temp (gfw.floor.main_light) -> ViDevLight.color_temp (gfw.floor.main_light)", + "asctime": "2025-08-22 20:54:49,929", "moduleLogger": [], "testcaseLogger": [ { @@ -115939,16 +130171,16 @@ "stack_info": null, "lineno": 13, "funcName": "device_follow", - "created": 1755638848.3726199, - "msecs": 372.0, - "relativeCreated": 88635.758894, - "thread": 131449228267776, + "created": 1755888890.0294454, + "msecs": 29.0, + "relativeCreated": 51904.25461, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Switching on device", - "asctime": "2025-08-19 23:27:28,372", + "asctime": "2025-08-22 20:54:50,029", "moduleLogger": [], "time_consumption": 0.0 }, @@ -115967,16 +130199,16 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638848.473544, - "msecs": 473.0, - "relativeCreated": 88736.682953, - "thread": 131449228267776, + "created": 1755888890.1299608, + "msecs": 129.0, + "relativeCreated": 52004.76991, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-19 23:27:28,473", + "asctime": "2025-08-22 20:54:50,129", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", @@ -115994,19 +130226,19 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.3730278, - "msecs": 373.0, - "relativeCreated": 88636.166823, - "thread": 131449228267776, + "created": 1755888890.0296526, + "msecs": 29.0, + "relativeCreated": 51904.461749, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 10", - "asctime": "2025-08-19 23:27:28,373" + "asctime": "2025-08-22 20:54:50,029" } ], - "time_consumption": 0.10051608085632324 + "time_consumption": 0.10030817985534668 }, { "name": "__tLogger__", @@ -116024,16 +130256,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638848.5741203, - "msecs": 574.0, - "relativeCreated": 88837.259159, - "thread": 131449228267776, + "created": 1755888890.130353, + "msecs": 130.0, + "relativeCreated": 52005.162131, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (10, 10) and Type is ).", - "asctime": "2025-08-19 23:27:28,574", + "asctime": "2025-08-22 20:54:50,130", "moduleLogger": [ { "name": "__unittest__", @@ -116052,16 +130284,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638848.5739431, - "msecs": 573.0, - "relativeCreated": 88837.081971, - "thread": 131449228267776, + "created": 1755888890.1302507, + "msecs": 130.0, + "relativeCreated": 52005.059926, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-19 23:27:28,573" + "asctime": "2025-08-22 20:54:50,130" }, { "name": "__unittest__", @@ -116081,25 +130313,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638848.5740652, - "msecs": 574.0, - "relativeCreated": 88837.204245, - "thread": 131449228267776, + "created": 1755888890.1303103, + "msecs": 130.0, + "relativeCreated": 52005.119558, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (10, 10) ()", - "asctime": "2025-08-19 23:27:28,574" + "asctime": "2025-08-22 20:54:50,130" } ], - "time_consumption": 5.507469177246094e-05 + "time_consumption": 4.267692565917969e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.color_temp (gfw.floor.main_light)", "0" ], "levelname": "DEBUG", @@ -116109,47 +130341,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638848.5742648, - "msecs": 574.0, - "relativeCreated": 88837.40385, - "thread": 131449228267776, + "created": 1755888890.2312806, + "msecs": 231.0, + "relativeCreated": 52106.089898, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 0", - "asctime": "2025-08-19 23:27:28,574", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638848.7753358, - "msecs": 775.0, - "relativeCreated": 89038.474793, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 0 and Type is ).", - "asctime": "2025-08-19 23:27:28,775", + "message": "Setting state of Light.color_temp (gfw.floor.main_light) to 0", + "asctime": "2025-08-22 20:54:50,231", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116167,16 +130370,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.574452, - "msecs": 574.0, - "relativeCreated": 88837.590886, - "thread": 131449228267776, + "created": 1755888890.1305282, + "msecs": 130.0, + "relativeCreated": 52005.337433, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:28,574" + "asctime": "2025-08-22 20:54:50,130" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -116194,16 +130397,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.5747159, - "msecs": 574.0, - "relativeCreated": 88837.854908, - "thread": 131449228267776, + "created": 1755888890.1308203, + "msecs": 130.0, + "relativeCreated": 52005.629562, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}", - "asctime": "2025-08-19 23:27:28,574" + "asctime": "2025-08-22 20:54:50,130" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116221,16 +130424,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.57544, - "msecs": 575.0, - "relativeCreated": 88838.578986, - "thread": 131449202394816, + "created": 1755888890.131867, + "msecs": 131.0, + "relativeCreated": 52006.67613, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:28,575" + "asctime": "2025-08-22 20:54:50,131" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -116248,16 +130451,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.5758376, - "msecs": 575.0, - "relativeCreated": 88838.97673, - "thread": 131449202394816, + "created": 1755888890.132192, + "msecs": 132.0, + "relativeCreated": 52007.001211, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 250.0}'", - "asctime": "2025-08-19 23:27:28,575" + "asctime": "2025-08-22 20:54:50,132" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -116275,22 +130478,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.57711, - "msecs": 577.0, - "relativeCreated": 88840.24894, - "thread": 131449202394816, + "created": 1755888890.133828, + "msecs": 133.0, + "relativeCreated": 52008.637011, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'0'", - "asctime": "2025-08-19 23:27:28,577" - }, + "asctime": "2025-08-22 20:54:50,133" + } + ], + "time_consumption": 0.09745264053344727 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888890.2315986, + "msecs": 231.0, + "relativeCreated": 52106.407743, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content 0 and Type is ).", + "asctime": "2025-08-22 20:54:50,231", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "0", "" ], @@ -116303,22 +130536,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638848.7751508, - "msecs": 775.0, - "relativeCreated": 89038.289909, - "thread": 131449228267776, + "created": 1755888890.2315001, + "msecs": 231.0, + "relativeCreated": 52106.309257, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 0 ()", - "asctime": "2025-08-19 23:27:28,775" + "message": "Result (Value for ViDevLight.color_temp (gfw.floor.main_light)): 0 ()", + "asctime": "2025-08-22 20:54:50,231" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "=", "0", "" @@ -116332,25 +130565,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638848.775285, - "msecs": 775.0, - "relativeCreated": 89038.424038, - "thread": 131449228267776, + "created": 1755888890.2315564, + "msecs": 231.0, + "relativeCreated": 52106.365707, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 0 ()", - "asctime": "2025-08-19 23:27:28,775" + "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 0 ()", + "asctime": "2025-08-22 20:54:50,231" } ], - "time_consumption": 5.078315734863281e-05 + "time_consumption": 4.220008850097656e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.color_temp (gfw.floor.main_light)", "2" ], "levelname": "DEBUG", @@ -116360,47 +130593,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638848.7755058, - "msecs": 775.0, - "relativeCreated": 89038.644794, - "thread": 131449228267776, + "created": 1755888890.3325555, + "msecs": 332.0, + "relativeCreated": 52207.364734, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 2", - "asctime": "2025-08-19 23:27:28,775", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638848.9766855, - "msecs": 976.0, - "relativeCreated": 89239.824701, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 2 and Type is ).", - "asctime": "2025-08-19 23:27:28,976", + "message": "Setting state of Light.color_temp (gfw.floor.main_light) to 2", + "asctime": "2025-08-22 20:54:50,332", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116418,16 +130622,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.7756705, - "msecs": 775.0, - "relativeCreated": 89038.809502, - "thread": 131449228267776, + "created": 1755888890.2318006, + "msecs": 231.0, + "relativeCreated": 52106.609859, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:28,775" + "asctime": "2025-08-22 20:54:50,231" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -116445,16 +130649,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.7759545, - "msecs": 775.0, - "relativeCreated": 89039.093427, - "thread": 131449228267776, + "created": 1755888890.232078, + "msecs": 232.0, + "relativeCreated": 52106.887441, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}", - "asctime": "2025-08-19 23:27:28,775" + "asctime": "2025-08-22 20:54:50,232" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116472,16 +130676,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.7768438, - "msecs": 776.0, - "relativeCreated": 89039.982707, - "thread": 131449202394816, + "created": 1755888890.2330115, + "msecs": 233.0, + "relativeCreated": 52107.820646, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:28,776" + "asctime": "2025-08-22 20:54:50,233" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -116499,16 +130703,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.7771826, - "msecs": 777.0, - "relativeCreated": 89040.321476, - "thread": 131449202394816, + "created": 1755888890.2333398, + "msecs": 233.0, + "relativeCreated": 52108.149127, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 291.0}'", - "asctime": "2025-08-19 23:27:28,777" + "asctime": "2025-08-22 20:54:50,233" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -116526,22 +130730,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.8173244, - "msecs": 817.0, - "relativeCreated": 89080.463205, - "thread": 131449202394816, + "created": 1755888890.2744505, + "msecs": 274.0, + "relativeCreated": 52149.259653, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'2'", - "asctime": "2025-08-19 23:27:28,817" - }, + "asctime": "2025-08-22 20:54:50,274" + } + ], + "time_consumption": 0.0581049919128418 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888890.3329265, + "msecs": 332.0, + "relativeCreated": 52207.735678, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content 2 and Type is ).", + "asctime": "2025-08-22 20:54:50,332", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "2", "" ], @@ -116554,22 +130788,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638848.9764931, - "msecs": 976.0, - "relativeCreated": 89239.632086, - "thread": 131449228267776, + "created": 1755888890.3328044, + "msecs": 332.0, + "relativeCreated": 52207.613629, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 2 ()", - "asctime": "2025-08-19 23:27:28,976" + "message": "Result (Value for ViDevLight.color_temp (gfw.floor.main_light)): 2 ()", + "asctime": "2025-08-22 20:54:50,332" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "=", "2", "" @@ -116583,25 +130817,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638848.976634, - "msecs": 976.0, - "relativeCreated": 89239.773244, - "thread": 131449228267776, + "created": 1755888890.3328633, + "msecs": 332.0, + "relativeCreated": 52207.672555, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 2 ()", - "asctime": "2025-08-19 23:27:28,976" + "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 2 ()", + "asctime": "2025-08-22 20:54:50,332" } ], - "time_consumption": 5.14984130859375e-05 + "time_consumption": 6.318092346191406e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.color_temp (gfw.floor.main_light)", "4" ], "levelname": "DEBUG", @@ -116611,47 +130845,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638848.9768345, - "msecs": 976.0, - "relativeCreated": 89239.973495, - "thread": 131449228267776, + "created": 1755888890.4338577, + "msecs": 433.0, + "relativeCreated": 52308.666927, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 4", - "asctime": "2025-08-19 23:27:28,976", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "4", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638849.1782026, - "msecs": 178.0, - "relativeCreated": 89441.341579, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 4 and Type is ).", - "asctime": "2025-08-19 23:27:29,178", + "message": "Setting state of Light.color_temp (gfw.floor.main_light) to 4", + "asctime": "2025-08-22 20:54:50,433", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116669,16 +130874,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.9770212, - "msecs": 977.0, - "relativeCreated": 89240.160119, - "thread": 131449228267776, + "created": 1755888890.333103, + "msecs": 333.0, + "relativeCreated": 52207.912113, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:28,977" + "asctime": "2025-08-22 20:54:50,333" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -116696,16 +130901,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638848.9773, - "msecs": 977.0, - "relativeCreated": 89240.43903, - "thread": 131449228267776, + "created": 1755888890.3333533, + "msecs": 333.0, + "relativeCreated": 52208.162378, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}", - "asctime": "2025-08-19 23:27:28,977" + "asctime": "2025-08-22 20:54:50,333" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116723,16 +130928,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.9781177, - "msecs": 978.0, - "relativeCreated": 89241.256727, - "thread": 131449202394816, + "created": 1755888890.334219, + "msecs": 334.0, + "relativeCreated": 52209.028352, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:28,978" + "asctime": "2025-08-22 20:54:50,334" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -116750,16 +130955,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638848.9784517, - "msecs": 978.0, - "relativeCreated": 89241.590782, - "thread": 131449202394816, + "created": 1755888890.3345969, + "msecs": 334.0, + "relativeCreated": 52209.405974, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 332.0}'", - "asctime": "2025-08-19 23:27:28,978" + "asctime": "2025-08-22 20:54:50,334" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -116777,22 +130982,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.0195963, - "msecs": 19.0, - "relativeCreated": 89282.735167, - "thread": 131449202394816, + "created": 1755888890.375346, + "msecs": 375.0, + "relativeCreated": 52250.155217, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'4'", - "asctime": "2025-08-19 23:27:29,019" - }, + "asctime": "2025-08-22 20:54:50,375" + } + ], + "time_consumption": 0.05851173400878906 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "4", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888890.4342337, + "msecs": 434.0, + "relativeCreated": 52309.042898, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content 4 and Type is ).", + "asctime": "2025-08-22 20:54:50,434", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "4", "" ], @@ -116805,22 +131040,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638849.177986, - "msecs": 177.0, - "relativeCreated": 89441.124685, - "thread": 131449228267776, + "created": 1755888890.4340749, + "msecs": 434.0, + "relativeCreated": 52308.884043, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 4 ()", - "asctime": "2025-08-19 23:27:29,177" + "message": "Result (Value for ViDevLight.color_temp (gfw.floor.main_light)): 4 ()", + "asctime": "2025-08-22 20:54:50,434" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "=", "4", "" @@ -116834,25 +131069,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638849.1781194, - "msecs": 178.0, - "relativeCreated": 89441.258316, - "thread": 131449228267776, + "created": 1755888890.4341893, + "msecs": 434.0, + "relativeCreated": 52308.998575, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 4 ()", - "asctime": "2025-08-19 23:27:29,178" + "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 4 ()", + "asctime": "2025-08-22 20:54:50,434" } ], - "time_consumption": 8.320808410644531e-05 + "time_consumption": 4.4345855712890625e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.color_temp (gfw.floor.main_light)", "6" ], "levelname": "DEBUG", @@ -116862,47 +131097,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638849.1783526, - "msecs": 178.0, - "relativeCreated": 89441.491668, - "thread": 131449228267776, + "created": 1755888890.5351748, + "msecs": 535.0, + "relativeCreated": 52409.984211, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 6", - "asctime": "2025-08-19 23:27:29,178", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "6", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638849.379483, - "msecs": 379.0, - "relativeCreated": 89642.621895, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 6 and Type is ).", - "asctime": "2025-08-19 23:27:29,379", + "message": "Setting state of Light.color_temp (gfw.floor.main_light) to 6", + "asctime": "2025-08-22 20:54:50,535", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116920,16 +131126,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.1785283, - "msecs": 178.0, - "relativeCreated": 89441.66717, - "thread": 131449228267776, + "created": 1755888890.4344106, + "msecs": 434.0, + "relativeCreated": 52309.21972, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:29,178" + "asctime": "2025-08-22 20:54:50,434" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -116947,16 +131153,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.178787, - "msecs": 178.0, - "relativeCreated": 89441.926074, - "thread": 131449228267776, + "created": 1755888890.4347, + "msecs": 434.0, + "relativeCreated": 52309.509328, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}", - "asctime": "2025-08-19 23:27:29,178" + "asctime": "2025-08-22 20:54:50,434" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -116974,16 +131180,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.1796079, - "msecs": 179.0, - "relativeCreated": 89442.746938, - "thread": 131449202394816, + "created": 1755888890.4355159, + "msecs": 435.0, + "relativeCreated": 52310.325177, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:29,179" + "asctime": "2025-08-22 20:54:50,435" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -117001,16 +131207,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.1799595, - "msecs": 179.0, - "relativeCreated": 89443.098578, - "thread": 131449202394816, + "created": 1755888890.4358637, + "msecs": 435.0, + "relativeCreated": 52310.672989, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 372.0}'", - "asctime": "2025-08-19 23:27:29,179" + "asctime": "2025-08-22 20:54:50,435" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -117028,22 +131234,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.220433, - "msecs": 220.0, - "relativeCreated": 89483.571901, - "thread": 131449202394816, + "created": 1755888890.4763918, + "msecs": 476.0, + "relativeCreated": 52351.200982, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'6'", - "asctime": "2025-08-19 23:27:29,220" - }, + "asctime": "2025-08-22 20:54:50,476" + } + ], + "time_consumption": 0.05878305435180664 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "6", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888890.5355136, + "msecs": 535.0, + "relativeCreated": 52410.322899, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content 6 and Type is ).", + "asctime": "2025-08-22 20:54:50,535", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "6", "" ], @@ -117056,22 +131292,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638849.3793192, - "msecs": 379.0, - "relativeCreated": 89642.458387, - "thread": 131449228267776, + "created": 1755888890.5354164, + "msecs": 535.0, + "relativeCreated": 52410.225581, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 6 ()", - "asctime": "2025-08-19 23:27:29,379" + "message": "Result (Value for ViDevLight.color_temp (gfw.floor.main_light)): 6 ()", + "asctime": "2025-08-22 20:54:50,535" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "=", "6", "" @@ -117085,25 +131321,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638849.3794346, - "msecs": 379.0, - "relativeCreated": 89642.573532, - "thread": 131449228267776, + "created": 1755888890.5354722, + "msecs": 535.0, + "relativeCreated": 52410.281241, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 6 ()", - "asctime": "2025-08-19 23:27:29,379" + "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 6 ()", + "asctime": "2025-08-22 20:54:50,535" } ], - "time_consumption": 4.839897155761719e-05 + "time_consumption": 4.1484832763671875e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.color_temp (gfw.floor.main_light)", "8" ], "levelname": "DEBUG", @@ -117113,47 +131349,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638849.3796427, - "msecs": 379.0, - "relativeCreated": 89642.781718, - "thread": 131449228267776, + "created": 1755888890.6363041, + "msecs": 636.0, + "relativeCreated": 52511.113489, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 8", - "asctime": "2025-08-19 23:27:29,379", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638849.5807219, - "msecs": 580.0, - "relativeCreated": 89843.860981, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 8 and Type is ).", - "asctime": "2025-08-19 23:27:29,580", + "message": "Setting state of Light.color_temp (gfw.floor.main_light) to 8", + "asctime": "2025-08-22 20:54:50,636", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -117171,16 +131378,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.3798213, - "msecs": 379.0, - "relativeCreated": 89642.960246, - "thread": 131449228267776, + "created": 1755888890.5357394, + "msecs": 535.0, + "relativeCreated": 52410.548727, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:29,379" + "asctime": "2025-08-22 20:54:50,535" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -117198,16 +131405,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.3800848, - "msecs": 380.0, - "relativeCreated": 89643.223787, - "thread": 131449228267776, + "created": 1755888890.5360034, + "msecs": 536.0, + "relativeCreated": 52410.812674, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}", - "asctime": "2025-08-19 23:27:29,380" + "asctime": "2025-08-22 20:54:50,536" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -117225,16 +131432,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.380703, - "msecs": 380.0, - "relativeCreated": 89643.841998, - "thread": 131449202394816, + "created": 1755888890.5369918, + "msecs": 536.0, + "relativeCreated": 52411.801104, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:29,380" + "asctime": "2025-08-22 20:54:50,536" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -117252,16 +131459,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.380994, - "msecs": 380.0, - "relativeCreated": 89644.133054, - "thread": 131449202394816, + "created": 1755888890.5373216, + "msecs": 537.0, + "relativeCreated": 52412.130733, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 413.0}'", - "asctime": "2025-08-19 23:27:29,380" + "asctime": "2025-08-22 20:54:50,537" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -117279,22 +131486,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.4215627, - "msecs": 421.0, - "relativeCreated": 89684.701751, - "thread": 131449202394816, + "created": 1755888890.5783908, + "msecs": 578.0, + "relativeCreated": 52453.199977, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8'", - "asctime": "2025-08-19 23:27:29,421" - }, + "asctime": "2025-08-22 20:54:50,578" + } + ], + "time_consumption": 0.05791330337524414 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888890.636604, + "msecs": 636.0, + "relativeCreated": 52511.413517, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content 8 and Type is ).", + "asctime": "2025-08-22 20:54:50,636", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "8", "" ], @@ -117307,22 +131544,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638849.5805452, - "msecs": 580.0, - "relativeCreated": 89843.684324, - "thread": 131449228267776, + "created": 1755888890.6365082, + "msecs": 636.0, + "relativeCreated": 52511.317435, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 8 ()", - "asctime": "2025-08-19 23:27:29,580" + "message": "Result (Value for ViDevLight.color_temp (gfw.floor.main_light)): 8 ()", + "asctime": "2025-08-22 20:54:50,636" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "=", "8", "" @@ -117336,25 +131573,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638849.58067, - "msecs": 580.0, - "relativeCreated": 89843.809094, - "thread": 131449228267776, + "created": 1755888890.6365626, + "msecs": 636.0, + "relativeCreated": 52511.371931, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 8 ()", - "asctime": "2025-08-19 23:27:29,580" + "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 8 ()", + "asctime": "2025-08-22 20:54:50,636" } ], - "time_consumption": 5.173683166503906e-05 + "time_consumption": 4.1484832763671875e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "zigbee_gfw/gfw/floor/main_light_1", + "Light.color_temp (gfw.floor.main_light)", "10" ], "levelname": "DEBUG", @@ -117364,47 +131601,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638849.5808628, - "msecs": 580.0, - "relativeCreated": 89844.001849, - "thread": 131449228267776, + "created": 1755888890.737391, + "msecs": 737.0, + "relativeCreated": 52612.200214, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of zigbee_gfw/gfw/floor/main_light_1 to 10", - "asctime": "2025-08-19 23:27:29,580", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/gfw/floor/main_light is correct (Content %s and Type is %s).", - "args": [ - "10", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638849.7830582, - "msecs": 783.0, - "relativeCreated": 90046.197217, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/gfw/floor/main_light is correct (Content 10 and Type is ).", - "asctime": "2025-08-19 23:27:29,783", + "message": "Setting state of Light.color_temp (gfw.floor.main_light) to 10", + "asctime": "2025-08-22 20:54:50,737", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -117422,16 +131630,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.5810642, - "msecs": 581.0, - "relativeCreated": 89844.203193, - "thread": 131449228267776, + "created": 1755888890.6368062, + "msecs": 636.0, + "relativeCreated": 52511.615467, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:29,581" + "asctime": "2025-08-22 20:54:50,636" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -117449,16 +131657,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.5820189, - "msecs": 582.0, - "relativeCreated": 89845.157703, - "thread": 131449228267776, + "created": 1755888890.6370738, + "msecs": 637.0, + "relativeCreated": 52511.882837, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic zigbee_gfw/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}", - "asctime": "2025-08-19 23:27:29,582" + "asctime": "2025-08-22 20:54:50,637" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", @@ -117476,16 +131684,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.5826678, - "msecs": 582.0, - "relativeCreated": 89845.806725, - "thread": 131449202394816, + "created": 1755888890.6377559, + "msecs": 637.0, + "relativeCreated": 52512.565027, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:29,582" + "asctime": "2025-08-22 20:54:50,637" }, { "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", @@ -117503,16 +131711,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.5829682, - "msecs": 582.0, - "relativeCreated": 89846.107211, - "thread": 131449202394816, + "created": 1755888890.6380634, + "msecs": 638.0, + "relativeCreated": 52512.872513, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 254.0, \"color_temp\": 454.0}'", - "asctime": "2025-08-19 23:27:29,582" + "asctime": "2025-08-22 20:54:50,638" }, { "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", @@ -117530,22 +131738,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.6235502, - "msecs": 623.0, - "relativeCreated": 89886.689309, - "thread": 131449202394816, + "created": 1755888890.679397, + "msecs": 679.0, + "relativeCreated": 52554.206403, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'10'", - "asctime": "2025-08-19 23:27:29,623" - }, + "asctime": "2025-08-22 20:54:50,679" + } + ], + "time_consumption": 0.05799388885498047 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "10", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888890.7377234, + "msecs": 737.0, + "relativeCreated": 52612.532722, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.color_temp (gfw.floor.main_light) is correct (Content 10 and Type is ).", + "asctime": "2025-08-22 20:54:50,737", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "10", "" ], @@ -117558,22 +131796,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638849.7828262, - "msecs": 782.0, - "relativeCreated": 90045.965168, - "thread": 131449228267776, + "created": 1755888890.7376046, + "msecs": 737.0, + "relativeCreated": 52612.413792, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/gfw/floor/main_light): 10 ()", - "asctime": "2025-08-19 23:27:29,782" + "message": "Result (Value for ViDevLight.color_temp (gfw.floor.main_light)): 10 ()", + "asctime": "2025-08-22 20:54:50,737" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/gfw/floor/main_light", + "Value for ViDevLight.color_temp (gfw.floor.main_light)", "=", "10", "" @@ -117587,28 +131825,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638849.7830024, - "msecs": 783.0, - "relativeCreated": 90046.141485, - "thread": 131449228267776, + "created": 1755888890.737681, + "msecs": 737.0, + "relativeCreated": 52612.490238, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/gfw/floor/main_light): result = 10 ()", - "asctime": "2025-08-19 23:27:29,783" + "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 10 ()", + "asctime": "2025-08-22 20:54:50,737" } ], - "time_consumption": 5.5789947509765625e-05 + "time_consumption": 4.2438507080078125e-05 } ], - "time_consumption": 1.510721206665039, - "time_start": "2025-08-19 23:27:28,272", - "time_finished": "2025-08-19 23:27:29,783" + "time_consumption": 0.8086459636688232, + "time_start": "2025-08-22 20:54:49,929", + "time_finished": "2025-08-22 20:54:50,737" }, - "REQ-0401": { + "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.main_light)": { "name": "__tLogger__", - "msg": "REQ-0401", + "msg": "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -117619,16 +131857,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638849.7833176, - "msecs": 783.0, - "relativeCreated": 90046.456564, - "thread": 131449228267776, + "created": 1755888890.7379513, + "msecs": 737.0, + "relativeCreated": 52612.760559, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0401", - "asctime": "2025-08-19 23:27:29,783", + "message": "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.main_light)", + "asctime": "2025-08-22 20:54:50,737", "moduleLogger": [], "testcaseLogger": [ { @@ -117646,16 +131884,16 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638849.884064, - "msecs": 884.0, - "relativeCreated": 90147.202884, - "thread": 131449228267776, + "created": 1755888890.838584, + "msecs": 838.0, + "relativeCreated": 52713.393211, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:29,884", + "asctime": "2025-08-22 20:54:50,838", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state.set", @@ -117673,45 +131911,19 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.7834544, - "msecs": 783.0, - "relativeCreated": 90046.593358, - "thread": 131449228267776, + "created": 1755888890.738081, + "msecs": 738.0, + "relativeCreated": 52612.890213, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload false", - "asctime": "2025-08-19 23:27:29,783" - }, - { - "name": "smart_brain.devices.shellies.stw.firstfloor.main_light", - "msg": "Unexpected key %s", - "args": [ - "state" - ], - "levelname": "WARNING", - "levelno": 30, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/base.py", - "filename": "base.py", - "module": "base", - "exc_text": null, - "stack_info": null, - "lineno": 49, - "funcName": "set", - "created": 1755638849.783708, - "msecs": 783.0, - "relativeCreated": 90046.847266, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Unexpected key state", - "asctime": "2025-08-19 23:27:29,783" + "asctime": "2025-08-22 20:54:50,738" } ], - "time_consumption": 0.10035586357116699 + "time_consumption": 0.10050296783447266 }, { "name": "__tLogger__", @@ -117729,16 +131941,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638849.9847832, - "msecs": 984.0, - "relativeCreated": 90247.922133, - "thread": 131449228267776, + "created": 1755888890.8389773, + "msecs": 838.0, + "relativeCreated": 52713.7866, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:29,984", + "asctime": "2025-08-22 20:54:50,838", "moduleLogger": [ { "name": "__unittest__", @@ -117757,16 +131969,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638849.9845839, - "msecs": 984.0, - "relativeCreated": 90247.722887, - "thread": 131449228267776, + "created": 1755888890.8388753, + "msecs": 838.0, + "relativeCreated": 52713.684751, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:29,984" + "asctime": "2025-08-22 20:54:50,838" }, { "name": "__unittest__", @@ -117786,25 +131998,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638849.9847288, - "msecs": 984.0, - "relativeCreated": 90247.867853, - "thread": 131449228267776, + "created": 1755888890.8389356, + "msecs": 838.0, + "relativeCreated": 52713.744754, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:29,984" + "asctime": "2025-08-22 20:54:50,838" } ], - "time_consumption": 5.435943603515625e-05 + "time_consumption": 4.172325134277344e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/stw/stairway/main_light", + "ViDevLight.state (stw.stairway.main_light)", "True" ], "levelname": "DEBUG", @@ -117814,47 +132026,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638849.984926, - "msecs": 984.0, - "relativeCreated": 90248.064862, - "thread": 131449228267776, + "created": 1755888890.9394825, + "msecs": 939.0, + "relativeCreated": 52814.291694, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/stw/stairway/main_light to True", - "asctime": "2025-08-19 23:27:29,984", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (stairway) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638850.1859424, - "msecs": 185.0, - "relativeCreated": 90449.081565, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (stairway) is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:30,185", + "message": "Setting state of ViDevLight.state (stw.stairway.main_light) to True", + "asctime": "2025-08-22 20:54:50,939", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state.set", @@ -117872,16 +132055,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.985045, - "msecs": 985.0, - "relativeCreated": 90248.18409, - "thread": 131449228267776, + "created": 1755888890.8390915, + "msecs": 839.0, + "relativeCreated": 52713.900634, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload true", - "asctime": "2025-08-19 23:27:29,985" + "asctime": "2025-08-22 20:54:50,839" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", @@ -117899,16 +132082,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.98787, - "msecs": 987.0, - "relativeCreated": 90251.009033, - "thread": 131449202394816, + "created": 1755888890.8414352, + "msecs": 841.0, + "relativeCreated": 52716.244447, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-19 23:27:29,987" + "asctime": "2025-08-22 20:54:50,841" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -117926,16 +132109,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638849.9881108, - "msecs": 988.0, - "relativeCreated": 90251.249725, - "thread": 131449202394816, + "created": 1755888890.841699, + "msecs": 841.0, + "relativeCreated": 52716.508165, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:29,988" + "asctime": "2025-08-22 20:54:50,841" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -117953,16 +132136,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638849.9886043, - "msecs": 988.0, - "relativeCreated": 90251.743302, - "thread": 131449202394816, + "created": 1755888890.8422167, + "msecs": 842.0, + "relativeCreated": 52717.025887, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:29,988" + "asctime": "2025-08-22 20:54:50,842" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -117980,16 +132163,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.029463, - "msecs": 29.0, - "relativeCreated": 90292.602087, - "thread": 131449202394816, + "created": 1755888890.884101, + "msecs": 884.0, + "relativeCreated": 52758.910185, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'100'", - "asctime": "2025-08-19 23:27:30,029" + "asctime": "2025-08-22 20:54:50,884" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -118007,22 +132190,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.0708096, - "msecs": 70.0, - "relativeCreated": 90333.94856, - "thread": 131449202394816, + "created": 1755888890.9245174, + "msecs": 924.0, + "relativeCreated": 52799.326511, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:30,070" - }, + "asctime": "2025-08-22 20:54:50,924" + } + ], + "time_consumption": 0.014965057373046875 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (stw.firstfloor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888890.9398584, + "msecs": 939.0, + "relativeCreated": 52814.667559, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (stw.firstfloor.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:50,939", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for Shelly Main Light (stairway)", + "Value for Shelly.relay/0 (stw.firstfloor.main_light)", "True", "" ], @@ -118035,22 +132248,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638850.1857064, - "msecs": 185.0, - "relativeCreated": 90448.845424, - "thread": 131449228267776, + "created": 1755888890.9397542, + "msecs": 939.0, + "relativeCreated": 52814.563431, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Shelly Main Light (stairway)): True ()", - "asctime": "2025-08-19 23:27:30,185" + "message": "Result (Value for Shelly.relay/0 (stw.firstfloor.main_light)): True ()", + "asctime": "2025-08-22 20:54:50,939" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for Shelly Main Light (stairway)", + "Value for Shelly.relay/0 (stw.firstfloor.main_light)", "=", "True", "" @@ -118064,25 +132277,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638850.1858582, - "msecs": 185.0, - "relativeCreated": 90448.99724, - "thread": 131449228267776, + "created": 1755888890.9398167, + "msecs": 939.0, + "relativeCreated": 52814.625828, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for Shelly Main Light (stairway)): result = True ()", - "asctime": "2025-08-19 23:27:30,185" + "message": "Expectation (Value for Shelly.relay/0 (stw.firstfloor.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:50,939" } ], - "time_consumption": 8.416175842285156e-05 + "time_consumption": 4.172325134277344e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "videv/stw/stairway/main_light", + "ViDevLight.state (stw.stairway.main_light)", "False" ], "levelname": "DEBUG", @@ -118092,47 +132305,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638850.18608, - "msecs": 186.0, - "relativeCreated": 90449.218998, - "thread": 131449228267776, + "created": 1755888891.0403087, + "msecs": 40.0, + "relativeCreated": 52915.118076, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of videv/stw/stairway/main_light to False", - "asctime": "2025-08-19 23:27:30,186", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly Main Light (stairway) is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638850.3872612, - "msecs": 387.0, - "relativeCreated": 90650.400091, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for Shelly Main Light (stairway) is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:30,387", + "message": "Setting state of ViDevLight.state (stw.stairway.main_light) to False", + "asctime": "2025-08-22 20:54:51,040", "moduleLogger": [ { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state.set", @@ -118150,16 +132334,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638850.1862257, - "msecs": 186.0, - "relativeCreated": 90449.364544, - "thread": 131449228267776, + "created": 1755888890.9399638, + "msecs": 939.0, + "relativeCreated": 52814.773143, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload false", - "asctime": "2025-08-19 23:27:30,186" + "asctime": "2025-08-22 20:54:50,939" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", @@ -118177,16 +132361,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.1881967, - "msecs": 188.0, - "relativeCreated": 90451.335644, - "thread": 131449202394816, + "created": 1755888890.9423282, + "msecs": 942.0, + "relativeCreated": 52817.137681, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:27:30,188" + "asctime": "2025-08-22 20:54:50,942" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -118204,16 +132388,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638850.1885335, - "msecs": 188.0, - "relativeCreated": 90451.672413, - "thread": 131449202394816, + "created": 1755888890.9425673, + "msecs": 942.0, + "relativeCreated": 52817.376716, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:27:30,188" + "asctime": "2025-08-22 20:54:50,942" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -118231,16 +132415,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.1892185, - "msecs": 189.0, - "relativeCreated": 90452.357453, - "thread": 131449202394816, + "created": 1755888890.9433007, + "msecs": 943.0, + "relativeCreated": 52818.109823, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:27:30,189" + "asctime": "2025-08-22 20:54:50,943" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", @@ -118258,16 +132442,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.2308154, - "msecs": 230.0, - "relativeCreated": 90493.954417, - "thread": 131449202394816, + "created": 1755888890.9857602, + "msecs": 985.0, + "relativeCreated": 52860.569605, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:27:30,230" + "asctime": "2025-08-22 20:54:50,985" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -118285,16 +132469,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.2311864, - "msecs": 231.0, - "relativeCreated": 90494.325376, - "thread": 131449202394816, + "created": 1755888890.9861643, + "msecs": 986.0, + "relativeCreated": 52860.97339, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'0'", - "asctime": "2025-08-19 23:27:30,231" + "asctime": "2025-08-22 20:54:50,986" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -118312,22 +132496,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.2313921, - "msecs": 231.0, - "relativeCreated": 90494.531235, - "thread": 131449202394816, + "created": 1755888890.9864457, + "msecs": 986.0, + "relativeCreated": 52861.254888, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:30,231" - }, + "asctime": "2025-08-22 20:54:50,986" + } + ], + "time_consumption": 0.0538630485534668 + }, + { + "name": "__tLogger__", + "msg": "Value for Shelly.relay/0 (stw.firstfloor.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888891.0406024, + "msecs": 40.0, + "relativeCreated": 52915.411476, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for Shelly.relay/0 (stw.firstfloor.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:51,040", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for Shelly Main Light (stairway)", + "Value for Shelly.relay/0 (stw.firstfloor.main_light)", "False", "" ], @@ -118340,22 +132554,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638850.3870342, - "msecs": 387.0, - "relativeCreated": 90650.17306, - "thread": 131449228267776, + "created": 1755888891.0405054, + "msecs": 40.0, + "relativeCreated": 52915.314572, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for Shelly Main Light (stairway)): False ()", - "asctime": "2025-08-19 23:27:30,387" + "message": "Result (Value for Shelly.relay/0 (stw.firstfloor.main_light)): False ()", + "asctime": "2025-08-22 20:54:51,040" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for Shelly Main Light (stairway)", + "Value for Shelly.relay/0 (stw.firstfloor.main_light)", "=", "False", "" @@ -118369,28 +132583,28 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638850.3872056, - "msecs": 387.0, - "relativeCreated": 90650.344535, - "thread": 131449228267776, + "created": 1755888891.0405622, + "msecs": 40.0, + "relativeCreated": 52915.37141, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for Shelly Main Light (stairway)): result = False ()", - "asctime": "2025-08-19 23:27:30,387" + "message": "Expectation (Value for Shelly.relay/0 (stw.firstfloor.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:51,040" } ], - "time_consumption": 5.555152893066406e-05 + "time_consumption": 4.029273986816406e-05 } ], - "time_consumption": 0.6039435863494873, - "time_start": "2025-08-19 23:27:29,783", - "time_finished": "2025-08-19 23:27:30,387" + "time_consumption": 0.30265116691589355, + "time_start": "2025-08-22 20:54:50,737", + "time_finished": "2025-08-22 20:54:51,040" }, - "REQ-0402": { + "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.main_light)": { "name": "__tLogger__", - "msg": "REQ-0402", + "msg": "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.main_light)", "args": null, "levelname": "INFO", "levelno": 20, @@ -118401,16 +132615,16 @@ "stack_info": null, "lineno": 329, "funcName": "testCase", - "created": 1755638850.3875096, - "msecs": 387.0, - "relativeCreated": 90650.64855, - "thread": 131449228267776, + "created": 1755888891.0407984, + "msecs": 40.0, + "relativeCreated": 52915.607737, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "REQ-0402", - "asctime": "2025-08-19 23:27:30,387", + "message": "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.main_light)", + "asctime": "2025-08-22 20:54:51,040", "moduleLogger": [], "testcaseLogger": [ { @@ -118428,22 +132642,22 @@ "stack_info": null, "lineno": 19, "funcName": "device_follow", - "created": 1755638850.4881678, - "msecs": 488.0, - "relativeCreated": 90751.306726, - "thread": 131449228267776, + "created": 1755888891.141257, + "msecs": 141.0, + "relativeCreated": 53016.066212, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-19 23:27:30,488", + "asctime": "2025-08-22 20:54:51,141", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.relay.0.set", + "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/relay/0/set", + "videv/stw/stairway/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -118455,19 +132669,19 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638850.3876739, - "msecs": 387.0, - "relativeCreated": 90650.812938, - "thread": 131449228267776, + "created": 1755888891.0409122, + "msecs": 40.0, + "relativeCreated": 52915.721438, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Sending message with topic videv/stw/stairway/main_light/relay/0/set and payload false", - "asctime": "2025-08-19 23:27:30,387" + "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload false", + "asctime": "2025-08-22 20:54:51,040" } ], - "time_consumption": 0.1004939079284668 + "time_consumption": 0.10034489631652832 }, { "name": "__tLogger__", @@ -118485,16 +132699,16 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1755638850.5887482, - "msecs": 588.0, - "relativeCreated": 90851.887317, - "thread": 131449228267776, + "created": 1755888891.1416228, + "msecs": 141.0, + "relativeCreated": 53016.431894, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Start state (master, slave) is correct (Content (False, False) and Type is ).", - "asctime": "2025-08-19 23:27:30,588", + "asctime": "2025-08-22 20:54:51,141", "moduleLogger": [ { "name": "__unittest__", @@ -118513,16 +132727,16 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638850.5885603, - "msecs": 588.0, - "relativeCreated": 90851.699428, - "thread": 131449228267776, + "created": 1755888891.1414933, + "msecs": 141.0, + "relativeCreated": 53016.30251, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-19 23:27:30,588" + "asctime": "2025-08-22 20:54:51,141" }, { "name": "__unittest__", @@ -118542,25 +132756,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638850.5886974, - "msecs": 588.0, - "relativeCreated": 90851.836226, - "thread": 131449228267776, + "created": 1755888891.1415796, + "msecs": 141.0, + "relativeCreated": 53016.38886, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Expectation (Start state (master, slave)): result = (False, False) ()", - "asctime": "2025-08-19 23:27:30,588" + "asctime": "2025-08-22 20:54:51,141" } ], - "time_consumption": 5.078315734863281e-05 + "time_consumption": 4.315376281738281e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (stairway)", + "Shelly.relay/0 (stw.firstfloor.main_light)", "True" ], "levelname": "DEBUG", @@ -118570,47 +132784,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638850.5888479, - "msecs": 588.0, - "relativeCreated": 90851.986769, - "thread": 131449228267776, + "created": 1755888891.2422938, + "msecs": 242.0, + "relativeCreated": 53117.103029, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Shelly Main Light (stairway) to True", - "asctime": "2025-08-19 23:27:30,588", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/stw/stairway/main_light is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638850.7897727, - "msecs": 789.0, - "relativeCreated": 91052.911869, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/stw/stairway/main_light is correct (Content True and Type is ).", - "asctime": "2025-08-19 23:27:30,789", + "message": "Setting state of Shelly.relay/0 (stw.firstfloor.main_light) to True", + "asctime": "2025-08-22 20:54:51,242", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -118628,16 +132813,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638850.5889635, - "msecs": 588.0, - "relativeCreated": 90852.10257, - "thread": 131449228267776, + "created": 1755888891.1417792, + "msecs": 141.0, + "relativeCreated": 53016.588394, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload on", - "asctime": "2025-08-19 23:27:30,588" + "asctime": "2025-08-22 20:54:51,141" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -118655,16 +132840,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.5897198, - "msecs": 589.0, - "relativeCreated": 90852.858775, - "thread": 131449202394816, + "created": 1755888891.1428711, + "msecs": 142.0, + "relativeCreated": 53017.680277, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-19 23:27:30,589" + "asctime": "2025-08-22 20:54:51,142" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -118682,16 +132867,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.5908988, - "msecs": 590.0, - "relativeCreated": 90854.037667, - "thread": 131449202394816, + "created": 1755888891.144599, + "msecs": 144.0, + "relativeCreated": 53019.408167, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'100'", - "asctime": "2025-08-19 23:27:30,590" + "asctime": "2025-08-22 20:54:51,144" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -118709,22 +132894,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.5911763, - "msecs": 591.0, - "relativeCreated": 90854.315216, - "thread": 131449202394816, + "created": 1755888891.1449873, + "msecs": 144.0, + "relativeCreated": 53019.796573, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'true'", - "asctime": "2025-08-19 23:27:30,591" - }, + "asctime": "2025-08-22 20:54:51,144" + } + ], + "time_consumption": 0.09730648994445801 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (stw.stairway.main_light) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888891.2426217, + "msecs": 242.0, + "relativeCreated": 53117.430837, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (stw.stairway.main_light) is correct (Content True and Type is ).", + "asctime": "2025-08-22 20:54:51,242", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/stw/stairway/main_light", + "Value for ViDevLight.state (stw.stairway.main_light)", "True", "" ], @@ -118737,22 +132952,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638850.789577, - "msecs": 789.0, - "relativeCreated": 91052.715916, - "thread": 131449228267776, + "created": 1755888891.2425215, + "msecs": 242.0, + "relativeCreated": 53117.33085, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/stw/stairway/main_light): True ()", - "asctime": "2025-08-19 23:27:30,789" + "message": "Result (Value for ViDevLight.state (stw.stairway.main_light)): True ()", + "asctime": "2025-08-22 20:54:51,242" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/stw/stairway/main_light", + "Value for ViDevLight.state (stw.stairway.main_light)", "=", "True", "" @@ -118766,25 +132981,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638850.7897196, - "msecs": 789.0, - "relativeCreated": 91052.858478, - "thread": 131449228267776, + "created": 1755888891.2425795, + "msecs": 242.0, + "relativeCreated": 53117.388628, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/stw/stairway/main_light): result = True ()", - "asctime": "2025-08-19 23:27:30,789" + "message": "Expectation (Value for ViDevLight.state (stw.stairway.main_light)): result = True ()", + "asctime": "2025-08-22 20:54:51,242" } ], - "time_consumption": 5.316734313964844e-05 + "time_consumption": 4.220008850097656e-05 }, { "name": "__tLogger__", "msg": "Setting state of %s to %s", "args": [ - "Shelly Main Light (stairway)", + "Shelly.relay/0 (stw.firstfloor.main_light)", "False" ], "levelname": "DEBUG", @@ -118794,47 +133009,18 @@ "module": "common_testcases", "exc_text": null, "stack_info": null, - "lineno": 27, + "lineno": 28, "funcName": "device_follow", - "created": 1755638850.7898858, - "msecs": 789.0, - "relativeCreated": 91053.024592, - "thread": 131449228267776, + "created": 1755888891.343345, + "msecs": 343.0, + "relativeCreated": 53218.154062, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Setting state of Shelly Main Light (stairway) to False", - "asctime": "2025-08-19 23:27:30,789", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Value for videv/stw/stairway/main_light is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1755638850.9910395, - "msecs": 991.0, - "relativeCreated": 91254.178605, - "thread": 131449228267776, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1603271, - "taskName": null, - "message": "Value for videv/stw/stairway/main_light is correct (Content False and Type is ).", - "asctime": "2025-08-19 23:27:30,991", + "message": "Setting state of Shelly.relay/0 (stw.firstfloor.main_light) to False", + "asctime": "2025-08-22 20:54:51,343", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -118852,16 +133038,16 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1755638850.7900562, - "msecs": 790.0, - "relativeCreated": 91053.195214, - "thread": 131449228267776, + "created": 1755888891.2427962, + "msecs": 242.0, + "relativeCreated": 53117.605527, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload off", - "asctime": "2025-08-19 23:27:30,790" + "asctime": "2025-08-22 20:54:51,242" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", @@ -118879,16 +133065,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.790963, - "msecs": 790.0, - "relativeCreated": 91054.102043, - "thread": 131449202394816, + "created": 1755888891.2440405, + "msecs": 244.0, + "relativeCreated": 53118.849638, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-19 23:27:30,790" + "asctime": "2025-08-22 20:54:51,244" }, { "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", @@ -118906,16 +133092,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.79254, - "msecs": 792.0, - "relativeCreated": 91055.679109, - "thread": 131449202394816, + "created": 1755888891.2458985, + "msecs": 245.0, + "relativeCreated": 53120.707658, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-19 23:27:30,792" + "asctime": "2025-08-22 20:54:51,245" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -118933,16 +133119,16 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.7928605, - "msecs": 792.0, - "relativeCreated": 91055.999378, - "thread": 131449202394816, + "created": 1755888891.2462387, + "msecs": 246.0, + "relativeCreated": 53121.04789, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'0'", - "asctime": "2025-08-19 23:27:30,792" + "asctime": "2025-08-22 20:54:51,246" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -118960,22 +133146,52 @@ "stack_info": null, "lineno": 92, "funcName": "__receive__", - "created": 1755638850.7931294, - "msecs": 793.0, - "relativeCreated": 91056.268484, - "thread": 131449202394816, + "created": 1755888891.2465384, + "msecs": 246.0, + "relativeCreated": 53121.347845, + "thread": 133814225516224, "threadName": "paho-mqtt-client-", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2025-08-19 23:27:30,793" - }, + "asctime": "2025-08-22 20:54:51,246" + } + ], + "time_consumption": 0.09680652618408203 + }, + { + "name": "__tLogger__", + "msg": "Value for ViDevLight.state (stw.stairway.main_light) is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1755888891.3437042, + "msecs": 343.0, + "relativeCreated": 53218.513446, + "thread": 133814251192576, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 1942956, + "taskName": null, + "message": "Value for ViDevLight.state (stw.stairway.main_light) is correct (Content False and Type is ).", + "asctime": "2025-08-22 20:54:51,343", + "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Value for videv/stw/stairway/main_light", + "Value for ViDevLight.state (stw.stairway.main_light)", "False", "" ], @@ -118988,22 +133204,22 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1755638850.9907854, - "msecs": 990.0, - "relativeCreated": 91253.924235, - "thread": 131449228267776, + "created": 1755888891.3435705, + "msecs": 343.0, + "relativeCreated": 53218.379761, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Result (Value for videv/stw/stairway/main_light): False ()", - "asctime": "2025-08-19 23:27:30,990" + "message": "Result (Value for ViDevLight.state (stw.stairway.main_light)): False ()", + "asctime": "2025-08-22 20:54:51,343" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Value for videv/stw/stairway/main_light", + "Value for ViDevLight.state (stw.stairway.main_light)", "=", "False", "" @@ -119017,124 +133233,135 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1755638850.9909594, - "msecs": 990.0, - "relativeCreated": 91254.09844, - "thread": 131449228267776, + "created": 1755888891.3436272, + "msecs": 343.0, + "relativeCreated": 53218.436552, + "thread": 133814251192576, "threadName": "MainThread", "processName": "MainProcess", - "process": 1603271, + "process": 1942956, "taskName": null, - "message": "Expectation (Value for videv/stw/stairway/main_light): result = False ()", - "asctime": "2025-08-19 23:27:30,990" + "message": "Expectation (Value for ViDevLight.state (stw.stairway.main_light)): result = False ()", + "asctime": "2025-08-22 20:54:51,343" } ], - "time_consumption": 8.0108642578125e-05 + "time_consumption": 7.700920104980469e-05 } ], - "time_consumption": 0.6035299301147461, - "time_start": "2025-08-19 23:27:30,387", - "time_finished": "2025-08-19 23:27:30,991" + "time_consumption": 0.302905797958374, + "time_start": "2025-08-22 20:54:51,040", + "time_finished": "2025-08-22 20:54:51,343" } }, "uid_list_sorted": [ "Clean-Up", - "REQ-0001", - "REQ-0002", - "REQ-0003", - "REQ-0004", - "REQ-0005", - "REQ-0006", - "REQ-0007", - "REQ-0010", - "REQ-0011", - "REQ-0012", - "REQ-0013", - "REQ-0014", - "REQ-0015", - "REQ-0016", - "REQ-0017", - "REQ-0021", - "REQ-0022", - "REQ-0023", - "REQ-0024", - "REQ-0025", - "REQ-0026", - "REQ-0027", - "REQ-0028", - "REQ-0029", - "REQ-0030", - "REQ-0031", - "REQ-0032", - "REQ-0041", - "REQ-0042", - "REQ-0043", - "REQ-0044", - "REQ-0045", - "REQ-0046", - "REQ-0047", - "REQ-0061", - "REQ-0062", - "REQ-0063", - "REQ-0064", - "REQ-0081", - "REQ-0082", - "REQ-0101", - "REQ-0102", - "REQ-0103", - "REQ-0104", - "REQ-0105", - "REQ-0106", - "REQ-0121", - "REQ-0122", - "REQ-0123", - "REQ-0124", - "REQ-0141", - "REQ-0142", - "REQ-0143", - "REQ-0144", - "REQ-0145", - "REQ-0146", - "REQ-0181", - "REQ-0182", - "REQ-0301", - "REQ-0302", - "REQ-0303", - "REQ-0304", - "REQ-0305", - "REQ-0306", - "REQ-0307", - "REQ-0308", - "REQ-0309", - "REQ-0310", - "REQ-0311", - "REQ-0312", - "REQ-0313", - "REQ-0314", - "REQ-0315", - "REQ-0316", - "REQ-0317", - "REQ-0318", - "REQ-0319", - "REQ-0320", - "REQ-0321", - "REQ-0322", - "REQ-0323", - "REQ-0324", - "REQ-0325", - "REQ-0341", - "REQ-0342", - "REQ-0343", - "REQ-0344", - "REQ-0345", - "REQ-0361", - "REQ-0362", - "REQ-0363", - "REQ-0364", - "REQ-0365", - "REQ-0366", - "REQ-0401", - "REQ-0402" + "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (ffe.livingroom.main_light)", + "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (ffe.livingroom.main_light)", + "ViDevLight.state (ffe.livingroom.floorlamp) -> Light.state (ffe.livingroom.floor_light)", + "Light.state (ffe.livingroom.floor_light) -> ViDevLight.state (ffe.livingroom.floorlamp)", + "Shelly.relay/0 (ffe.livingroom.main_light) -> Light.state (ffe.livingroom.floor_light)", + "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.state (ffe.livingroom.xmas-tree)", + "Powerplug1P.state (ffe.livingroom.xmas-tree) -> ViDevLight.state (ffe.livingroom.xmas_tree)", + "ViDevLight.brightness (ffe.livingroom.main_light) -> Light.brightness (ffe.livingroom.main_light)", + "Light.brightness (ffe.livingroom.main_light) -> ViDevLight.brightness (ffe.livingroom.main_light)", + "ViDevLight.color_temp (ffe.livingroom.main_light) -> Light.color_temp (ffe.livingroom.main_light)", + "Light.color_temp (ffe.livingroom.main_light) -> ViDevLight.color_temp (ffe.livingroom.main_light)", + "ViDevLight.brightness (ffe.livingroom.floorlamp) -> Light.brightness (ffe.livingroom.floor_light)", + "Light.brightness (ffe.livingroom.floor_light) -> ViDevLight.brightness (ffe.livingroom.floorlamp)", + "ViDevLight.color_temp (ffe.livingroom.floorlamp) -> Light.color_temp (ffe.livingroom.floor_light)", + "Light.color_temp (ffe.livingroom.floor_light) -> ViDevLight.color_temp (ffe.livingroom.floorlamp)", + "ViDevHeating.temp_setp (ffe.livingroom.heating_valve) -> HeatingValve.temp_setp (ffe.livingroom.heating_valve)", + "ViDevLight.state (ffe.sleep.main_light) -> Shelly.relay/0 (ffe.sleep.main_light)", + "Shelly.relay/0 (ffe.sleep.main_light) -> ViDevLight.state (ffe.sleep.main_light)", + "ViDevLight.state (ffe.sleep.bed_light_di) -> Light.state (ffe.sleep.bed_light_di)", + "Light.state (ffe.sleep.bed_light_di) -> ViDevLight.state (ffe.sleep.bed_light_di)", + "ViDevLight.state (ffe.sleep.bed_light_ma) -> Powerplug1P.state (ffe.sleep.bed_light_ma)", + "Powerplug1P.state (ffe.sleep.bed_light_ma) -> ViDevLight.state (ffe.sleep.bed_light_ma)", + "ViDevLight.brightness (ffe.sleep.main_light) -> Light.brightness (ffe.sleep.main_light)", + "Light.brightness (ffe.sleep.main_light) -> ViDevLight.brightness (ffe.sleep.main_light)", + "ViDevLight.color_temp (ffe.sleep.main_light) -> Light.color_temp (ffe.sleep.main_light)", + "Light.color_temp (ffe.sleep.main_light) -> ViDevLight.color_temp (ffe.sleep.main_light)", + "ViDevLight.brightness (ffe.sleep.bed_light_di) -> Light.brightness (ffe.sleep.bed_light_di)", + "Light.brightness (ffe.sleep.bed_light_di) -> ViDevLight.brightness (ffe.sleep.bed_light_di)", + "ViDevHeating.temp_setp (ffe.sleep.heating_valve) -> HeatingValve.temp_setp (ffe.sleep.heating_valve)", + "ViDevLight.state (ffe.diningroom.main_light) -> Shelly.relay/0 (ffe.diningroom.main_light)", + "Shelly.relay/0 (ffe.diningroom.main_light) -> ViDevLight.state (ffe.diningroom.main_light)", + "ViDevLight.state (ffe.diningroom.floorlamp) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "Powerplug1P.state (ffe.diningroom.floor_light) -> ViDevLight.state (ffe.diningroom.floorlamp)", + "Shelly.relay/0 (ffe.diningroom.main_light) -> Powerplug1P.state (ffe.diningroom.floor_light)", + "ViDevLight.state (ffe.diningroom.garland) -> Powerplug1P.state (ffe.diningroom.garland)", + "Powerplug1P.state (ffe.diningroom.garland) -> ViDevLight.state (ffe.diningroom.garland)", + "ViDevLight.state (ffe.kitchen.main_light) -> Shelly.relay/0 (ffe.kitchen.main_light)", + "Shelly.relay/0 (ffe.kitchen.main_light) -> ViDevLight.state (ffe.kitchen.main_light)", + "ViDevLight.state (ffe.kitchen.circulation_pump) -> Shelly.relay/0 (ffe.kitchen.circulation_pump)", + "Shelly.relay/0 (ffe.kitchen.circulation_pump) -> ViDevLight.state (ffe.kitchen.circulation_pump)", + "ViDevHeating.temp_setp (ffe.kitchen.heating_valve) -> HeatingValve.temp_setp (ffe.kitchen.heating_valve)", + "ViDevLight.state (ffe.floor.main_light) -> Shelly.relay/0 (ffe.floor.main_light)", + "Shelly.relay/0 (ffe.floor.main_light) -> ViDevLight.state (ffe.floor.main_light)", + "ViDevLight.state (ffw.livingroom.main_light) -> Shelly.relay/0 (ffw.livingroom.main_light)", + "Shelly.relay/0 (ffw.livingroom.main_light) -> ViDevLight.state (ffw.livingroom.main_light)", + "ViDevLight.brightness (ffw.livingroom.main_light) -> Light.brightness (ffw.livingroom.main_light)", + "Light.brightness (ffw.livingroom.main_light) -> ViDevLight.brightness (ffw.livingroom.main_light)", + "ViDevLight.color_temp (ffw.livingroom.main_light) -> Light.color_temp (ffw.livingroom.main_light)", + "Light.color_temp (ffw.livingroom.main_light) -> ViDevLight.color_temp (ffw.livingroom.main_light)", + "ViDevHeating.temp_setp (ffw.livingroom.heating_valve) -> HeatingValve.temp_setp (ffw.livingroom.heating_valve)", + "ViDevLight.state (ffw.sleep.main_light) -> Shelly.relay/0 (ffw.sleep.main_light)", + "Shelly.relay/0 (ffw.sleep.main_light) -> ViDevLight.state (ffw.sleep.main_light)", + "ViDevLight.brightness (ffw.sleep.main_light) -> Light.brightness (ffw.sleep.main_light)", + "Light.brightness (ffw.sleep.main_light) -> ViDevLight.brightness (ffw.sleep.main_light)", + "ViDevHeating.temp_setp (ffw.sleep.heating_valve) -> HeatingValve.temp_setp (ffw.sleep.heating_valve)", + "ViDevLight.state (ffw.julian.main_light) -> Shelly.relay/0 (ffw.julian.main_light)", + "Shelly.relay/0 (ffw.julian.main_light) -> ViDevLight.state (ffw.julian.main_light)", + "ViDevLight.brightness (ffw.julian.main_light) -> Light.brightness (ffw.julian.main_light)", + "Light.brightness (ffw.julian.main_light) -> ViDevLight.brightness (ffw.julian.main_light)", + "ViDevLight.color_temp (ffw.julian.main_light) -> Light.color_temp (ffw.julian.main_light)", + "Light.color_temp (ffw.julian.main_light) -> ViDevLight.color_temp (ffw.julian.main_light)", + "ViDevHeating.temp_setp (ffw.julian.heating_valve) -> HeatingValve.temp_setp (ffw.julian.heating_valve)", + "ViDevLight.state (ffw.bath.main_light) -> Shelly.relay/0 (ffw.bath.main_light)", + "Shelly.relay/0 (ffw.bath.main_light) -> ViDevLight.state (ffw.bath.main_light)", + "ViDevHeating.temp_setp (ffw.bath.heating_valve) -> HeatingValve.temp_setp (ffw.bath.heating_valve)", + "ViDevLight.state (ffw.floor.main_light) -> Shelly.relay/0 (ffw.floor.main_light)", + "Shelly.relay/0 (ffw.floor.main_light) -> ViDevLight.state (ffw.floor.main_light)", + "ViDevLight.state (gfw.dirk.main_light) -> Shelly.relay/0 (gfw.dirk.main_light)", + "Shelly.relay/0 (gfw.dirk.main_light) -> ViDevLight.state (gfw.dirk.main_light)", + "ViDevLight.state (gfw.dirk.desk_light) -> Light.state (gfw.dirk.desk_light)", + "Light.state (gfw.dirk.desk_light) -> ViDevLight.state (gfw.dirk.desk_light)", + "ViDevLight.state (gfw.dirk.pc_dock) -> Powerplug1P.state (gfw.dirk.dock)", + "Powerplug1P.state (gfw.dirk.dock) -> ViDevLight.state (gfw.dirk.pc_dock)", + "ViDevLight.state (gfw.dirk.amplifier) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "Powerplug4P.amplifier (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.amplifier)", + "ViDevLight.state (gfw.dirk.phono) -> Powerplug4P.phono (gfw.dirk.powerplug)", + "Powerplug4P.phono (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.phono)", + "ViDevLight.state (gfw.dirk.cd_player) -> Powerplug4P.cd-player (gfw.dirk.powerplug)", + "Powerplug4P.cd-player (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.cd_player)", + "ViDevLight.state (gfw.dirk.bt) -> Powerplug4P.bluetooth (gfw.dirk.powerplug)", + "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> ViDevLight.state (gfw.dirk.bt)", + "Powerplug4P.phono (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "Powerplug4P.cd-player (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "Powerplug4P.bluetooth (gfw.dirk.powerplug) -> Powerplug4P.amplifier (gfw.dirk.powerplug)", + "ViDevLight.brightness (gfw.dirk.main_light) -> Light.brightness (gfw.dirk.main_light)", + "Light.brightness (gfw.dirk.main_light) -> ViDevLight.brightness (gfw.dirk.main_light)", + "ViDevLight.color_temp (gfw.dirk.main_light) -> Light.color_temp (gfw.dirk.main_light)", + "Light.color_temp (gfw.dirk.main_light) -> ViDevLight.color_temp (gfw.dirk.main_light)", + "ViDevLight.brightness (gfw.dirk.desk_light) -> Light.brightness (gfw.dirk.desk_light)", + "Light.brightness (gfw.dirk.desk_light) -> ViDevLight.brightness (gfw.dirk.desk_light)", + "ViDevLight.color_temp (gfw.dirk.desk_light) -> Light.color_temp (gfw.dirk.desk_light)", + "Light.color_temp (gfw.dirk.desk_light) -> ViDevLight.color_temp (gfw.dirk.desk_light)", + "ViDevHeating.temp_setp (gfw.dirk.heating_valve) -> HeatingValve.temp_setp (gfw.dirk.heating_valve)", + "ViDevLight.state (gfw.marion.main_light) -> Shelly.relay/0 (gfw.marion.main_light)", + "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (gfw.marion.main_light)", + "ViDevLight.state (gfw.marion.window_light) -> Light.state (gfw.marion.window_light)", + "Light.state (gfw.marion.window_light) -> ViDevLight.state (gfw.marion.window_light)", + "Shelly.relay/0 (gfw.marion.main_light) -> Light.state (gfw.marion.window_light)", + "ViDevHeating.temp_setp (gfw.marion.heating_valve) -> HeatingValve.temp_setp (gfw.marion.heating_valve)", + "ViDevLight.state (gfw.floor.main_light) -> Shelly.relay/0 (gfw.floor.main_light)", + "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (gfw.floor.main_light)", + "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (gfw.floor.main_light)", + "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (gfw.floor.main_light)", + "ViDevLight.color_temp (gfw.floor.main_light) -> Light.color_temp (gfw.floor.main_light)", + "Light.color_temp (gfw.floor.main_light) -> ViDevLight.color_temp (gfw.floor.main_light)", + "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.main_light)", + "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.main_light)" ] } ] diff --git a/testresults/testrun.pdf b/testresults/testrun.pdf index c1e296b..ee36f44 100644 Binary files a/testresults/testrun.pdf and b/testresults/testrun.pdf differ diff --git a/tests/__init__.py b/tests/__init__.py index 0e1d948..29953b6 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,9 +1,10 @@ -from .rooms import ffe, ffw, gfe, gfw, stw +from .rooms import preconditions, ffe, ffw, gfe, gfw, stw # TODO: Coverage, *Information (Chapter 1), ... ausblenden, wenn leer def add_all_testcases(ts, mc, h): + preconditions(ts, mc, h) ffe(ts, mc, h) ffw(ts, mc, h) gfe(ts, mc, h) diff --git a/tests/common_testcases.py b/tests/common_testcases.py index f5f853c..12d517b 100644 --- a/tests/common_testcases.py +++ b/tests/common_testcases.py @@ -14,19 +14,17 @@ def device_follow(tLogger, master, master_key, slave, slave_key, values, switch_ # Prepare devices to last state start_state = values[-1] master.set(master_key, start_state) - slave.set(master_key, start_state) + slave.set(slave_key, start_state) time.sleep(DELAY_SET_GET) tLogger.debug("Prepare: Setting devices to last state %s", repr(start_state)) master_exp = master.get(master_key) slave_exp = slave.get(slave_key) - time.sleep(DELAY_SET_GET) equivalency_chk((master_exp, slave_exp), (start_state, start_state), tLogger, "Start state (master, slave)") - + # # Test devices for value in values: - tLogger.debug("Setting state of %s to %s", master.get_name(master_key, master.topic), repr(value)) master.set(master_key, value) time.sleep(DELAY_SET_GET) - expectation = slave.get(slave_key) - time.sleep(DELAY_SET_GET) - equivalency_chk(expectation, value, tLogger, f"Value for {slave.get_name(slave_key, slave.topic)}") + tLogger.debug("Setting state of %s to %s", master.get_name(master_key, master.topic), repr(value)) + result = slave.get(slave_key) + equivalency_chk(result, value, tLogger, f"Value for {slave.get_name(slave_key, slave.topic)}") diff --git a/tests/help.py b/tests/help.py index f8f3991..4e0363d 100644 --- a/tests/help.py +++ b/tests/help.py @@ -16,6 +16,7 @@ DELAY_SET_GET = 0.1 STATES_SW = (True, False) STATES_BR = range(0, 101, 20) STATES_CT = range(0, 11, 2) +STATES_TEMP = range(15, 31, 5) class testSession(testSessionBase): diff --git a/tests/rooms.py b/tests/rooms.py index 1abef47..e4b133a 100644 --- a/tests/rooms.py +++ b/tests/rooms.py @@ -1,20 +1,25 @@ import config import report +import time from mqtt import mqtt_client from simulation.rooms import house from .help import testSession -from .help import STATES_SW, STATES_BR, STATES_CT +from .help import STATES_SW, STATES_BR, STATES_CT, STATES_TEMP from tests.common_testcases import device_follow -# TODO: Add heating valve tests # TODO: Compare with nodered capabilities and remove todos in code -def device_follow_sw(ts, testcase_id, master, slave, master_ch=0, slave_ch=0, single=False): +def device_follow_sw(ts, master, slave, master_ch=0, slave_ch=0, single=False): master_key = getattr(master, "KEY_OUTPUT_%d" % master_ch) slave_key = getattr(slave, "KEY_OUTPUT_%d" % slave_ch) + # + master_name = master.get_name(master_key) + slave_name = slave.get_name(slave_key) + # + testcase_id = master_name + " -> " + slave_name ts.testCase( testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, master, master_key, @@ -23,7 +28,11 @@ def device_follow_sw(ts, testcase_id, master, slave, master_ch=0, slave_ch=0, si ) -def device_follow_br(ts, testcase_id, master, slave, switch_on=None, single=False): +def device_follow_br(ts, master, slave, switch_on=None, single=False): + master_name = master.get_name(master.KEY_BRIGHTNESS) + slave_name = slave.get_name(slave.KEY_BRIGHTNESS) + # + testcase_id = master_name + " -> " + slave_name ts.testCase( testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, master, master.KEY_BRIGHTNESS, @@ -32,7 +41,11 @@ def device_follow_br(ts, testcase_id, master, slave, switch_on=None, single=Fals ) -def device_follow_ct(ts, testcase_id, master, slave, switch_on=None, single=False): +def device_follow_ct(ts, master, slave, switch_on=None, single=False): + master_name = master.get_name(master.KEY_COLOR_TEMP) + slave_name = slave.get_name(slave.KEY_COLOR_TEMP) + # + testcase_id = master_name + " -> " + slave_name ts.testCase( testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, master, master.KEY_COLOR_TEMP, @@ -41,33 +54,57 @@ def device_follow_ct(ts, testcase_id, master, slave, switch_on=None, single=Fals ) +def device_follow_temp(ts, master, slave, single=False): + master_name = master.get_name(master.KEY_USER_TEMPERATURE_SETPOINT) + slave_name = slave.get_name(slave.KEY_TEMPERATURE_SETPOINT) + # + testcase_id = master_name + " -> " + slave_name + ts.testCase( + testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, + master, master.KEY_USER_TEMPERATURE_SETPOINT, + slave, slave.KEY_TEMPERATURE_SETPOINT, + STATES_TEMP, None + ) + + +def preconditions(ts: testSession, mc: mqtt_client, h: house): + def precond_test(tLogger): + mc.send("videv/all/oof", True) + time.sleep(0.5) + tLogger.debug("Collecting precondition logs...") + + # Clean-Up + ts.testCase('Clean-Up', report.TCEL_SINGLE, precond_test) + + def ffe(ts: testSession, mc: mqtt_client, h: house): - # REQ 0001 - 0099 # # ffe.livingroom # room = h.ffe.livingroom # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0001', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0002', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # floor_lamp videv<->zigbee + main_light->zigbee - device_follow_sw(ts, 'REQ-0003', room.videv_floor_lamp, room.floor_lamp_zigbee) - device_follow_sw(ts, 'REQ-0004', room.floor_lamp_zigbee, room.videv_floor_lamp) - device_follow_sw(ts, 'REQ-0005', room.main_light, room.floor_lamp_zigbee) + device_follow_sw(ts, room.videv_floor_lamp, room.floor_lamp_zigbee) + device_follow_sw(ts, room.floor_lamp_zigbee, room.videv_floor_lamp) + device_follow_sw(ts, room.main_light, room.floor_lamp_zigbee) # xmas_tree videv<-->shelly if config.CHRISTMAS: - device_follow_sw(ts, 'REQ-0006', room.videv_xmas_tree, room.xmas_tree) - device_follow_sw(ts, 'REQ-0007', room.xmas_tree, room.videv_xmas_tree) + device_follow_sw(ts, room.videv_xmas_tree, room.xmas_tree) + device_follow_sw(ts, room.xmas_tree, room.videv_xmas_tree) # Brightness and Colortemperature #################### - device_follow_br(ts, 'REQ-0010', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_br(ts, 'REQ-0011', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_ct(ts, 'REQ-0012', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_ct(ts, 'REQ-0013', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_br(ts, 'REQ-0014', room.videv_floor_lamp, room.floor_lamp_zigbee, room.floor_lamp_zigbee) - device_follow_br(ts, 'REQ-0015', room.floor_lamp_zigbee, room.videv_floor_lamp, room.floor_lamp_zigbee) - device_follow_ct(ts, 'REQ-0016', room.videv_floor_lamp, room.floor_lamp_zigbee, room.floor_lamp_zigbee) - device_follow_ct(ts, 'REQ-0017', room.floor_lamp_zigbee, room.videv_floor_lamp, room.floor_lamp_zigbee) + device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_ct(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_ct(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_br(ts, room.videv_floor_lamp, room.floor_lamp_zigbee, room.floor_lamp_zigbee) + device_follow_br(ts, room.floor_lamp_zigbee, room.videv_floor_lamp, room.floor_lamp_zigbee) + device_follow_ct(ts, room.videv_floor_lamp, room.floor_lamp_zigbee, room.floor_lamp_zigbee) + device_follow_ct(ts, room.floor_lamp_zigbee, room.videv_floor_lamp, room.floor_lamp_zigbee) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # ffe.sleep @@ -75,22 +112,24 @@ def ffe(ts: testSession, mc: mqtt_client, h: house): room = h.ffe.sleep # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0021', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0022', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # bed_light_di videv<-->zigbee - device_follow_sw(ts, 'REQ-0023', room.videv_bed_light_di, room.bed_light_di_zigbee) - device_follow_sw(ts, 'REQ-0024', room.bed_light_di_zigbee, room.videv_bed_light_di) + device_follow_sw(ts, room.videv_bed_light_di, room.bed_light_di_zigbee) + device_follow_sw(ts, room.bed_light_di_zigbee, room.videv_bed_light_di) # - device_follow_sw(ts, 'REQ-0025', room.videv_bed_light_ma, room.bed_light_ma) - device_follow_sw(ts, 'REQ-0026', room.bed_light_ma, room.videv_bed_light_ma) + device_follow_sw(ts, room.videv_bed_light_ma, room.bed_light_ma) + device_follow_sw(ts, room.bed_light_ma, room.videv_bed_light_ma) # Brightness and Colortemperature #################### - device_follow_br(ts, 'REQ-0027', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_br(ts, 'REQ-0028', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_ct(ts, 'REQ-0029', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_ct(ts, 'REQ-0030', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_br(ts, 'REQ-0031', room.videv_bed_light_di, room.bed_light_di_zigbee, room.bed_light_di_zigbee) - device_follow_br(ts, 'REQ-0032', room.bed_light_di_zigbee, room.videv_bed_light_di, room.bed_light_di_zigbee) + device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_ct(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_ct(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_br(ts, room.videv_bed_light_di, room.bed_light_di_zigbee, room.bed_light_di_zigbee) + device_follow_br(ts, room.bed_light_di_zigbee, room.videv_bed_light_di, room.bed_light_di_zigbee) # TODO: Wardrobe + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # ffe.diningroom @@ -98,16 +137,16 @@ def ffe(ts: testSession, mc: mqtt_client, h: house): room = h.ffe.diningroom # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0041', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0042', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # floor_lamp videv<->zigbee + main_light->zigbee - device_follow_sw(ts, 'REQ-0043', room.videv_floor_lamp, room.floor_lamp) - device_follow_sw(ts, 'REQ-0044', room.floor_lamp, room.videv_floor_lamp) - device_follow_sw(ts, 'REQ-0045', room.main_light, room.floor_lamp) + device_follow_sw(ts, room.videv_floor_lamp, room.floor_lamp) + device_follow_sw(ts, room.floor_lamp, room.videv_floor_lamp) + device_follow_sw(ts, room.main_light, room.floor_lamp) # garland if config.CHRISTMAS: - device_follow_sw(ts, 'REQ-0046', room.videv_garland, room.garland) - device_follow_sw(ts, 'REQ-0047', room.garland, room.videv_garland) + device_follow_sw(ts, room.videv_garland, room.garland) + device_follow_sw(ts, room.garland, room.videv_garland) # # ffe.kitchen @@ -115,16 +154,18 @@ def ffe(ts: testSession, mc: mqtt_client, h: house): room = h.ffe.kitchen # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0061', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0062', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # circulation_pump - device_follow_sw(ts, 'REQ-0063', room.videv_circulation_pump, room.circulation_pump) - device_follow_sw(ts, 'REQ-0064', room.circulation_pump, room.videv_circulation_pump) + device_follow_sw(ts, room.videv_circulation_pump, room.circulation_pump) + device_follow_sw(ts, room.circulation_pump, room.videv_circulation_pump) # Brightness and Colortemperature #################### - # TODO: device_follow_br(ts, 'REQ-0070', room.videv_main_light, room.main_light_zigbee, room.main_light) - # TODO: device_follow_br(ts, 'REQ-0071', room.main_light_zigbee, room.videv_main_light, room.main_light) - # TODO: device_follow_ct(ts, 'REQ-0072', room.videv_main_light, room.main_light_zigbee, room.main_light) - # TODO: device_follow_ct(ts, 'REQ-0073', room.main_light_zigbee, room.videv_main_light, room.main_light) + # TODO: device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + # TODO: device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + # TODO: device_follow_ct(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + # TODO: device_follow_ct(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # ffe.floor @@ -132,25 +173,26 @@ def ffe(ts: testSession, mc: mqtt_client, h: house): # Switching devices ################################## room = h.ffe.floor # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0081', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0082', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) def ffw(ts: testSession, mc: mqtt_client, h: house): - # REQ 0101 - 0199 # # ffw.livingroom # room = h.ffw.livingroom # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0101', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0102', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # Brightness and Colortemperature #################### - device_follow_br(ts, 'REQ-0103', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_br(ts, 'REQ-0104', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_ct(ts, 'REQ-0105', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_ct(ts, 'REQ-0106', room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_ct(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_ct(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # ffw.sleep @@ -158,12 +200,14 @@ def ffw(ts: testSession, mc: mqtt_client, h: house): room = h.ffw.sleep # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0121', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0122', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # TODO: window_light # Brightness and Colortemperature #################### - device_follow_br(ts, 'REQ-0123', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_br(ts, 'REQ-0124', room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # ffw.julian @@ -171,20 +215,26 @@ def ffw(ts: testSession, mc: mqtt_client, h: house): room = h.ffw.julian # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0141', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0142', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # Brightness and Colortemperature #################### - device_follow_br(ts, 'REQ-0143', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_br(ts, 'REQ-0144', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_ct(ts, 'REQ-0145', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_ct(ts, 'REQ-0146', room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_ct(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_ct(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # ffw.bath # room = h.ffw.bath # Switching devices ################################## - # ... + # main_light videv<-->shelly + device_follow_sw(ts, room.videv_main_light, room.main_light, single=True) + device_follow_sw(ts, room.main_light, room.videv_main_light, single=True) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # ffw.floor @@ -192,12 +242,11 @@ def ffw(ts: testSession, mc: mqtt_client, h: house): room = h.ffw.floor # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0181', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0182', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) def gfe(ts: testSession, mc: mqtt_client, h: house): - # REQ 0201 - 0299 # # gfe. # @@ -207,43 +256,44 @@ def gfe(ts: testSession, mc: mqtt_client, h: house): def gfw(ts: testSession, mc: mqtt_client, h: house): - # REQ 0301 - 0399 # # gfw.dirk # room = h.gfw.dirk # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0301', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0302', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # desk_light videv<-->tradfri - device_follow_sw(ts, 'REQ-0303', room.videv_desk_light, room.desk_light) - device_follow_sw(ts, 'REQ-0304', room.desk_light, room.videv_desk_light) + device_follow_sw(ts, room.videv_desk_light, room.desk_light) + device_follow_sw(ts, room.desk_light, room.videv_desk_light) # desk_light videv<-->powerplug - device_follow_sw(ts, 'REQ-0305', room.videv_pc_dock, room.pc_dock) - device_follow_sw(ts, 'REQ-0306', room.pc_dock, room.videv_pc_dock) + device_follow_sw(ts, room.videv_pc_dock, room.pc_dock) + device_follow_sw(ts, room.pc_dock, room.videv_pc_dock) # powerplug videv <-> channel - device_follow_sw(ts, 'REQ-0307', room.videv_amplifier, room.my_powerplug, slave_ch=0) - device_follow_sw(ts, 'REQ-0308', room.my_powerplug, room.videv_amplifier, master_ch=0) - device_follow_sw(ts, 'REQ-0309', room.videv_phono, room.my_powerplug, slave_ch=1) - device_follow_sw(ts, 'REQ-0310', room.my_powerplug, room.videv_phono, master_ch=1) - device_follow_sw(ts, 'REQ-0311', room.videv_cd_player, room.my_powerplug, slave_ch=2) - device_follow_sw(ts, 'REQ-0312', room.my_powerplug, room.videv_cd_player, master_ch=2) - device_follow_sw(ts, 'REQ-0313', room.videv_bt, room.my_powerplug, slave_ch=3) - device_follow_sw(ts, 'REQ-0314', room.my_powerplug, room.videv_bt, master_ch=3) + device_follow_sw(ts, room.videv_amplifier, room.my_powerplug, slave_ch=0) + device_follow_sw(ts, room.my_powerplug, room.videv_amplifier, master_ch=0) + device_follow_sw(ts, room.videv_phono, room.my_powerplug, slave_ch=1) + device_follow_sw(ts, room.my_powerplug, room.videv_phono, master_ch=1) + device_follow_sw(ts, room.videv_cd_player, room.my_powerplug, slave_ch=2) + device_follow_sw(ts, room.my_powerplug, room.videv_cd_player, master_ch=2) + device_follow_sw(ts, room.videv_bt, room.my_powerplug, slave_ch=3) + device_follow_sw(ts, room.my_powerplug, room.videv_bt, master_ch=3) # powerplug follow - device_follow_sw(ts, 'REQ-0315', room.my_powerplug, room.my_powerplug, master_ch=1, slave_ch=0) - device_follow_sw(ts, 'REQ-0316', room.my_powerplug, room.my_powerplug, master_ch=2, slave_ch=0) - device_follow_sw(ts, 'REQ-0317', room.my_powerplug, room.my_powerplug, master_ch=3, slave_ch=0) + device_follow_sw(ts, room.my_powerplug, room.my_powerplug, master_ch=1, slave_ch=0) + device_follow_sw(ts, room.my_powerplug, room.my_powerplug, master_ch=2, slave_ch=0) + device_follow_sw(ts, room.my_powerplug, room.my_powerplug, master_ch=3, slave_ch=0) # Brightness and Colortemperature #################### - device_follow_br(ts, 'REQ-0318', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_br(ts, 'REQ-0319', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_ct(ts, 'REQ-0320', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_ct(ts, 'REQ-0321', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_br(ts, 'REQ-0322', room.videv_desk_light, room.desk_light, room.desk_light) - device_follow_br(ts, 'REQ-0323', room.desk_light, room.videv_desk_light, room.desk_light) - device_follow_ct(ts, 'REQ-0324', room.videv_desk_light, room.desk_light, room.desk_light) - device_follow_ct(ts, 'REQ-0325', room.desk_light, room.videv_desk_light, room.desk_light) + device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_ct(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_ct(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_br(ts, room.videv_desk_light, room.desk_light, room.desk_light) + device_follow_br(ts, room.desk_light, room.videv_desk_light, room.desk_light) + device_follow_ct(ts, room.videv_desk_light, room.desk_light, room.desk_light) + device_follow_ct(ts, room.desk_light, room.videv_desk_light, room.desk_light) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # gfw.marion @@ -251,12 +301,14 @@ def gfw(ts: testSession, mc: mqtt_client, h: house): room = h.gfw.marion # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0341', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0342', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # floor_lamp videv<->zigbee + main_light->zigbee - device_follow_sw(ts, 'REQ-0343', room.videv_window_light, room.window_light) - device_follow_sw(ts, 'REQ-0344', room.window_light, room.videv_window_light) - device_follow_sw(ts, 'REQ-0345', room.main_light, room.window_light) + device_follow_sw(ts, room.videv_window_light, room.window_light) + device_follow_sw(ts, room.window_light, room.videv_window_light) + device_follow_sw(ts, room.main_light, room.window_light) + # Temperature ######################################## + device_follow_temp(ts, room.videv_heating, room.heating_valve) # # gfw.floor @@ -264,22 +316,21 @@ def gfw(ts: testSession, mc: mqtt_client, h: house): room = h.gfw.floor # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0361', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0362', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light) # Brightness and Colortemperature #################### - device_follow_br(ts, 'REQ-0363', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_br(ts, 'REQ-0364', room.main_light_zigbee, room.videv_main_light, room.main_light) - device_follow_ct(ts, 'REQ-0365', room.videv_main_light, room.main_light_zigbee, room.main_light) - device_follow_ct(ts, 'REQ-0366', room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_br(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_br(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) + device_follow_ct(ts, room.videv_main_light, room.main_light_zigbee, room.main_light) + device_follow_ct(ts, room.main_light_zigbee, room.videv_main_light, room.main_light) def stw(ts: testSession, mc: mqtt_client, h: house): - # REQ 0401 - 0499 # # stairways # room = h.stairway # Switching devices ################################## # main_light videv<-->shelly - device_follow_sw(ts, 'REQ-0401', room.videv_main_light, room.main_light) - device_follow_sw(ts, 'REQ-0402', room.main_light, room.videv_main_light) + device_follow_sw(ts, room.videv_main_light, room.main_light) + device_follow_sw(ts, room.main_light, room.videv_main_light)